summaryrefslogtreecommitdiff
path: root/Source/cmTest.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-03 21:35:22 +0200
committerStephen Kelly <steveire@gmail.com>2014-04-03 21:53:14 +0200
commit6c190245703b2115e8cdf62ccdea090583d14299 (patch)
tree3656697400231b545192d68b99ac996c477569f9 /Source/cmTest.h
parent4bef02e7aa60c48df923d778ae33438e573ec7bc (diff)
downloadcmake-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/cmTest.h')
-rw-r--r--Source/cmTest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTest.h b/Source/cmTest.h
index b3785f6368..a93eff534d 100644
--- a/Source/cmTest.h
+++ b/Source/cmTest.h
@@ -51,10 +51,10 @@ public:
const char* value,bool asString=false);
const char *GetProperty(const std::string& prop) const;
bool GetPropertyAsBool(const std::string& prop) const;
- cmPropertyMap &GetProperties() { return this->Properties; };
+ cmPropertyMap &GetProperties() { return this->Properties; }
/** Get the cmMakefile instance that owns this test. */
- cmMakefile *GetMakefile() { return this->Makefile;};
+ cmMakefile *GetMakefile() { return this->Makefile;}
/** Get the backtrace of the command that created this test. */
cmListFileBacktrace const& GetBacktrace() const;