chore: remove stdstring.h use include <string> instead

This commit is contained in:
sithlord48
2025-01-05 22:47:11 -05:00
committed by Nick Bolton
parent 3991e0c1a1
commit 6c95daf0a1
9 changed files with 7 additions and 32 deletions

View File

@ -19,7 +19,7 @@
#pragma once
#include "common/IInterface.h"
#include "common/stdstring.h"
#include <string>
//! Interface for architecture dependent file system operations
/*!

View File

@ -19,7 +19,7 @@
#pragma once
#include "common/IInterface.h"
#include "common/stdstring.h"
#include <string>
#include <vector>

View File

@ -19,7 +19,7 @@
#pragma once
#include "common/IInterface.h"
#include "common/stdstring.h"
#include <string>
//! Interface for architecture dependent system queries
/*!

View File

@ -20,7 +20,7 @@
#include "common/common.h"
#include "common/stdexcept.h"
#include "common/stdstring.h"
#include <string>
//! Generic thread exception
/*!

View File

@ -21,7 +21,7 @@
#include "arch/IArchDaemon.h"
#include "arch/IArchMultithread.h"
#include "common/constants.h"
#include "common/stdstring.h"
#include <string>
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>

View File

@ -19,7 +19,7 @@
#pragma once
#include "common/stdset.h"
#include "common/stdstring.h"
#include <string>
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>

View File

@ -19,7 +19,7 @@
#pragma once
#include "common/common.h"
#include "common/stdstring.h"
#include <string>
#include <stdarg.h>
#include <vector>

View File

@ -22,7 +22,6 @@ add_library(common INTERFACE
stdpre.h
stdset.h
stdsstream.h
stdstring.h
stdvector.h
${CMAKE_CURRENT_BINARY_DIR}/constants.h
)

View File

@ -1,24 +0,0 @@
/*
* Deskflow -- mouse and keyboard sharing utility
* Copyright (C) 2012-2016 Symless Ltd.
* Copyright (C) 2002 Chris Schoeneman
*
* This package is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* found in the file LICENSE that should have accompanied this file.
*
* This package is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "stdpre.h"
#include <string>
#include "stdpost.h"