diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-04-03 21:35:22 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-03 21:53:14 +0200 |
commit | 6c190245703b2115e8cdf62ccdea090583d14299 (patch) | |
tree | 3656697400231b545192d68b99ac996c477569f9 /Source/cmCTest.h | |
parent | 4bef02e7aa60c48df923d778ae33438e573ec7bc (diff) | |
download | cmake-6c190245703b2115e8cdf62ccdea090583d14299.tar.gz |
Remove extra semicolons from C++ code.
Clang based tools running over the code complain about these,
but clang has a fixit for removing them.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 836e41d276..246294f7fe 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -134,7 +134,7 @@ public: /* * Is the tomorrow tag set? */ - bool GetTomorrowTag() { return this->TomorrowTag; }; + bool GetTomorrowTag() { return this->TomorrowTag; } /** * Try to run tests of the project @@ -167,7 +167,7 @@ public: * Set the cmake test mode (experimental, nightly, continuous). */ void SetTestModel(int mode); - int GetTestModel() { return this->TestModel; }; + int GetTestModel() { return this->TestModel; } std::string GetTestModelString(); static int GetTestModelFromString(const char* str); @@ -392,7 +392,7 @@ public: int ReadCustomConfigurationFileTree(const char* dir, cmMakefile* mf); std::vector<std::string> &GetInitialCommandLineArguments() - { return this->InitialCommandLineArguments; }; + { return this->InitialCommandLineArguments; } //! Set the track to submit to void SetSpecificTrack(const char* track); |