Remove extra semicolons from C++ code.

Clang based tools running over the code complain about these,
but clang has a fixit for removing them.
This commit is contained in:
Stephen Kelly
2014-04-03 21:35:22 +02:00
parent 4bef02e7aa
commit 6c19024570
20 changed files with 41 additions and 41 deletions

View File

@@ -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.