summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.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/cmGlobalGenerator.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/cmGlobalGenerator.h')
-rw-r--r--Source/cmGlobalGenerator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h
index 54f5f3b..82fb1e5 100644
--- a/Source/cmGlobalGenerator.h
+++ b/Source/cmGlobalGenerator.h
@@ -51,7 +51,7 @@ public:
virtual cmLocalGenerator *CreateLocalGenerator();
///! Get the name for this generator
- virtual std::string GetName() const { return "Generic"; };
+ virtual std::string GetName() const { return "Generic"; }
/** Check whether the given name matches the current generator. */
virtual bool MatchesGeneratorName(const std::string& name) const