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/cmFunctionCommand.cxx | |
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/cmFunctionCommand.cxx')
-rw-r--r-- | Source/cmFunctionCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFunctionCommand.cxx b/Source/cmFunctionCommand.cxx index 3ff527d..3580374 100644 --- a/Source/cmFunctionCommand.cxx +++ b/Source/cmFunctionCommand.cxx @@ -20,7 +20,7 @@ public: cmFunctionHelperCommand() {} ///! clean up any memory allocated by the function - ~cmFunctionHelperCommand() {}; + ~cmFunctionHelperCommand() {} /** * This is used to avoid including this command @@ -59,7 +59,7 @@ public: cmExecutionStatus &); virtual bool InitialPass(std::vector<std::string> const&, - cmExecutionStatus &) { return false; }; + cmExecutionStatus &) { return false; } /** * The name of the command as specified in CMakeList.txt. |