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/cmSourceFile.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/cmSourceFile.h')
-rw-r--r-- | Source/cmSourceFile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h index 755a2cfe8b..a1d9de1c0d 100644 --- a/Source/cmSourceFile.h +++ b/Source/cmSourceFile.h @@ -89,7 +89,7 @@ public: void AddDepend(const char* d) { this->Depends.push_back(d); } // Get the properties - cmPropertyMap &GetProperties() { return this->Properties; }; + cmPropertyMap &GetProperties() { return this->Properties; } /** * Check whether the given source file location could refer to this |