diff options
author | Brad King <brad.king@kitware.com> | 2014-04-04 15:38:06 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-04-04 15:38:06 (GMT) |
commit | 079153e98e7386cf99e0a55bd64790d9fd4ad28b (patch) | |
tree | 72abe4222e1c65c2588fc286ffbe12eb8e74f21c /Source/cmGlobalGenerator.h | |
parent | aeb930fcce91168e93cea1816dbb64c141558ac0 (diff) | |
parent | 6c190245703b2115e8cdf62ccdea090583d14299 (diff) | |
download | CMake-079153e98e7386cf99e0a55bd64790d9fd4ad28b.zip CMake-079153e98e7386cf99e0a55bd64790d9fd4ad28b.tar.gz CMake-079153e98e7386cf99e0a55bd64790d9fd4ad28b.tar.bz2 |
Merge topic 'compiler-warning-cleanup'
6c190245 Remove extra semicolons from C++ code.
4bef02e7 cmTypeMacro: Add a class to eat the semicolon following the macro use.
ff710539 Remove default labels from fully covered switch statements.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 2 |
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 |