diff options
author | Brad King <brad.king@kitware.com> | 2015-08-20 20:06:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-08-20 20:19:08 (GMT) |
commit | e8585f45f57e23bc9eca068d8bee02888066d722 (patch) | |
tree | 462e3c88cd2a92ce8c512947fd6e7d507e1169ee /Source | |
parent | 6db713c07f2f1b14f695e123008522daf3d26527 (diff) | |
download | CMake-e8585f45f57e23bc9eca068d8bee02888066d722.zip CMake-e8585f45f57e23bc9eca068d8bee02888066d722.tar.gz CMake-e8585f45f57e23bc9eca068d8bee02888066d722.tar.bz2 |
Remove use of include <cmsys/stl/*> and cmsys_stl::*
We no longer need this compatibility layer for the compilers we support.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CTest/cmCTestCoverageHandler.cxx | 2 | ||||
-rw-r--r-- | Source/cmComputeLinkDepends.cxx | 2 | ||||
-rw-r--r-- | Source/cmFindLibraryCommand.cxx | 1 | ||||
-rw-r--r-- | Source/cmSystemTools.cxx | 1 | ||||
-rw-r--r-- | Source/cmXMLSafe.h | 3 |
5 files changed, 2 insertions, 7 deletions
diff --git a/Source/CTest/cmCTestCoverageHandler.cxx b/Source/CTest/cmCTestCoverageHandler.cxx index 65599e0..20807c8 100644 --- a/Source/CTest/cmCTestCoverageHandler.cxx +++ b/Source/CTest/cmCTestCoverageHandler.cxx @@ -27,8 +27,6 @@ #include <cmsys/Process.h> #include <cmsys/RegularExpression.hxx> #include <cmsys/Glob.hxx> -#include <cmsys/stl/iterator> -#include <cmsys/stl/algorithm> #include <cmsys/FStream.hxx> #include <stdlib.h> diff --git a/Source/cmComputeLinkDepends.cxx b/Source/cmComputeLinkDepends.cxx index 8ba8847..59590fd 100644 --- a/Source/cmComputeLinkDepends.cxx +++ b/Source/cmComputeLinkDepends.cxx @@ -18,8 +18,6 @@ #include "cmake.h" #include "cmAlgorithms.h" -#include <cmsys/stl/algorithm> - #include <assert.h> /* diff --git a/Source/cmFindLibraryCommand.cxx b/Source/cmFindLibraryCommand.cxx index 0a66732..e8d158e 100644 --- a/Source/cmFindLibraryCommand.cxx +++ b/Source/cmFindLibraryCommand.cxx @@ -11,7 +11,6 @@ ============================================================================*/ #include "cmFindLibraryCommand.h" #include <cmsys/Directory.hxx> -#include <cmsys/stl/algorithm> cmFindLibraryCommand::cmFindLibraryCommand() { diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index ab3c1ee..c6c9f53 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -30,7 +30,6 @@ # include "cmLocale.h" # include <cm_libarchive.h> #endif -#include <cmsys/stl/algorithm> #include <cmsys/FStream.hxx> #include <cmsys/Terminal.h> diff --git a/Source/cmXMLSafe.h b/Source/cmXMLSafe.h index 42333fa..ead2e01 100644 --- a/Source/cmXMLSafe.h +++ b/Source/cmXMLSafe.h @@ -12,7 +12,8 @@ #ifndef cmXMLSafe_h #define cmXMLSafe_h -#include <cmsys/stl/string> +#include <cmsys/Configure.hxx> +#include <string> #include <iosfwd> /** \class cmXMLSafe |