diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-12-30 17:32:55 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-12-30 17:32:55 (GMT) |
commit | 94632087b23f26a0a480cdcbab68fbc9aee7d75a (patch) | |
tree | 5f2f504ab268eebf797c3a5f1cb5c5628d4a026f /Source/cmGlobalVisualStudio71Generator.h | |
parent | ae8525b82f03d3ce0c1e880e62bec0956f90839b (diff) | |
download | CMake-94632087b23f26a0a480cdcbab68fbc9aee7d75a.zip CMake-94632087b23f26a0a480cdcbab68fbc9aee7d75a.tar.gz CMake-94632087b23f26a0a480cdcbab68fbc9aee7d75a.tar.bz2 |
Add missing override
Diffstat (limited to 'Source/cmGlobalVisualStudio71Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio71Generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.h b/Source/cmGlobalVisualStudio71Generator.h index b6e3131..b634b95 100644 --- a/Source/cmGlobalVisualStudio71Generator.h +++ b/Source/cmGlobalVisualStudio71Generator.h @@ -37,7 +37,7 @@ protected: void WriteSLNHeader(std::ostream& fout) override; // Folders are not supported by VS 7.1. - virtual bool UseFolderProperty() { return false; } + bool UseFolderProperty() const override { return false; } std::string ProjectConfigurationSectionName; }; |