diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-04-03 19:35:22 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-03 19:53:14 (GMT) |
commit | 6c190245703b2115e8cdf62ccdea090583d14299 (patch) | |
tree | 3656697400231b545192d68b99ac996c477569f9 /Source/cmDepends.h | |
parent | 4bef02e7aa60c48df923d778ae33438e573ec7bc (diff) | |
download | CMake-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/cmDepends.h')
-rw-r--r-- | Source/cmDepends.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDepends.h b/Source/cmDepends.h index b293c5b..4f6517e 100644 --- a/Source/cmDepends.h +++ b/Source/cmDepends.h @@ -32,7 +32,7 @@ public: cmDepends(cmLocalGenerator* lg=0, const char* targetDir=""); /** at what level will the compile be done from */ - void SetCompileDirectory(const char *dir) {this->CompileDirectory = dir;}; + void SetCompileDirectory(const char *dir) {this->CompileDirectory = dir;} /** Set the local generator for the directory in which we are scanning dependencies. This is not a full local generator; it |