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/cmGlobalVisualStudio8Generator.cxx | |
parent | ae8525b82f03d3ce0c1e880e62bec0956f90839b (diff) | |
download | CMake-94632087b23f26a0a480cdcbab68fbc9aee7d75a.zip CMake-94632087b23f26a0a480cdcbab68fbc9aee7d75a.tar.gz CMake-94632087b23f26a0a480cdcbab68fbc9aee7d75a.tar.bz2 |
Add missing override
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index 097d7e2..ee118f1 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -78,7 +78,7 @@ void cmGlobalVisualStudio8Generator::Configure() this->cmGlobalVisualStudio7Generator::Configure(); } -bool cmGlobalVisualStudio8Generator::UseFolderProperty() +bool cmGlobalVisualStudio8Generator::UseFolderProperty() const { return IsExpressEdition() ? false : cmGlobalGenerator::UseFolderProperty(); } |