diff options
author | Brad King <brad.king@kitware.com> | 2018-06-22 15:35:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-06-22 17:38:18 (GMT) |
commit | b41b30f16e1ae2c8248321dbf51347b7a4b90d30 (patch) | |
tree | b99773a7e7667b9568b1159aa0673e70dc0bfb91 /Source/cmCTest.h | |
parent | f2d97c1cdf06f8575d0b23130db4ffa725ca5161 (diff) | |
download | CMake-b41b30f16e1ae2c8248321dbf51347b7a4b90d30.zip CMake-b41b30f16e1ae2c8248321dbf51347b7a4b90d30.tar.gz CMake-b41b30f16e1ae2c8248321dbf51347b7a4b90d30.tar.bz2 |
Update use of KWSys SystemTools::SplitString for new signature
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index ddeab1a..c6ece98 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -7,7 +7,7 @@ #include "cmDuration.h" #include "cmProcessOutput.h" -#include "cmsys/String.hxx" + #include <chrono> #include <map> #include <set> @@ -93,7 +93,7 @@ public: if the string does not name a valid part. */ Part GetPartFromName(const char* name); - typedef std::vector<cmsys::String> VectorOfStrings; + typedef std::vector<std::string> VectorOfStrings; typedef std::set<std::string> SetOfStrings; /** Process Command line arguments */ |