diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-03-18 21:25:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-03-20 15:41:29 (GMT) |
commit | a5eeb0310db04aa661dec37f7cc1073e058f3acf (patch) | |
tree | 0398d06f066387e49d6b3b23c0062232dc425c38 /Source/CTest/cmCTestUploadCommand.h | |
parent | 71a3391b5ff95271074cf15a4a5d09ded42a362f (diff) | |
download | CMake-a5eeb0310db04aa661dec37f7cc1073e058f3acf.zip CMake-a5eeb0310db04aa661dec37f7cc1073e058f3acf.tar.gz CMake-a5eeb0310db04aa661dec37f7cc1073e058f3acf.tar.bz2 |
cmCTest: Cleanup typedefs
Diffstat (limited to 'Source/CTest/cmCTestUploadCommand.h')
-rw-r--r-- | Source/CTest/cmCTestUploadCommand.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/CTest/cmCTestUploadCommand.h b/Source/CTest/cmCTestUploadCommand.h index 61bf1cc..0d3b06e 100644 --- a/Source/CTest/cmCTestUploadCommand.h +++ b/Source/CTest/cmCTestUploadCommand.h @@ -5,9 +5,9 @@ #include "cmConfigure.h" // IWYU pragma: keep -#include "cmCTest.h" #include "cmCTestHandlerCommand.h" +#include <set> #include <string> class cmCTestGenericHandler; @@ -22,8 +22,6 @@ class cmCommand; class cmCTestUploadCommand : public cmCTestHandlerCommand { public: - cmCTestUploadCommand() {} - /** * This is a virtual constructor for the command. */ @@ -55,7 +53,7 @@ protected: ArgumentDoingLast2 }; - cmCTest::SetOfStrings Files; + std::set<std::string> Files; }; #endif |