summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-03 19:35:22 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-03 19:53:14 (GMT)
commit6c190245703b2115e8cdf62ccdea090583d14299 (patch)
tree3656697400231b545192d68b99ac996c477569f9 /Source/cmTarget.h
parent4bef02e7aa60c48df923d778ae33438e573ec7bc (diff)
downloadCMake-6c190245703b2115e8cdf62ccdea090583d14299.zip
CMake-6c190245703b2115e8cdf62ccdea090583d14299.tar.gz
CMake-6c190245703b2115e8cdf62ccdea090583d14299.tar.bz2
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/cmTarget.h')
-rw-r--r--Source/cmTarget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 055e029..da032a5 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -106,7 +106,7 @@ public:
///! Set the cmMakefile that owns this target
void SetMakefile(cmMakefile *mf);
- cmMakefile *GetMakefile() const { return this->Makefile;};
+ cmMakefile *GetMakefile() const { return this->Makefile;}
#define DECLARE_TARGET_POLICY(POLICY) \
cmPolicies::PolicyStatus GetPolicyStatus ## POLICY () const \
@@ -448,7 +448,7 @@ public:
cmTarget const* head = 0) const;
// Get the properties
- cmPropertyMap &GetProperties() const { return this->Properties; };
+ cmPropertyMap &GetProperties() const { return this->Properties; }
bool GetMappedConfig(std::string const& desired_config,
const char** loc,