diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-03-05 00:55:31 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-03-05 00:55:31 (GMT) |
commit | c9d2e1cee07a9b93d9584768ce5610af70b7d44d (patch) | |
tree | 003ee7cf33568c7e25ea8ac543e56fedd66cb135 /Source/cmGlobalVisualStudioVersionedGenerator.cxx | |
parent | 6873e984869d7f0f96cc8d93ebe76413d1b14b36 (diff) | |
download | CMake-c9d2e1cee07a9b93d9584768ce5610af70b7d44d.zip CMake-c9d2e1cee07a9b93d9584768ce5610af70b7d44d.tar.gz CMake-c9d2e1cee07a9b93d9584768ce5610af70b7d44d.tar.bz2 |
Fix missing `override`
Diffstat (limited to 'Source/cmGlobalVisualStudioVersionedGenerator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudioVersionedGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudioVersionedGenerator.cxx b/Source/cmGlobalVisualStudioVersionedGenerator.cxx index 2f9eb3f..94f6b68 100644 --- a/Source/cmGlobalVisualStudioVersionedGenerator.cxx +++ b/Source/cmGlobalVisualStudioVersionedGenerator.cxx @@ -206,8 +206,8 @@ class cmGlobalVisualStudioVersionedGenerator::Factory16 : public cmGlobalGeneratorFactory { public: - virtual cmGlobalGenerator* CreateGlobalGenerator(const std::string& name, - cmake* cm) const + cmGlobalGenerator* CreateGlobalGenerator(const std::string& name, + cmake* cm) const override { std::string genName; const char* p = cmVS16GenName(name, genName); @@ -221,7 +221,7 @@ public: return 0; } - virtual void GetDocumentation(cmDocumentationEntry& entry) const + void GetDocumentation(cmDocumentationEntry& entry) const override { entry.Name = std::string(vs16generatorName); entry.Brief = "Generates Visual Studio 2019 project files. " |