diff options
author | Brad King <brad.king@kitware.com> | 2019-01-09 16:28:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-10 12:52:48 (GMT) |
commit | 03f74a16cde9e2e7e3433054970cc7cadd31388f (patch) | |
tree | 2ddb8d32f2492160dd3ca0a817c055abdb71a0ee /Source/cmGlobalVisualStudioGenerator.h | |
parent | d07f453f39b477d687dd87aad2e1cd766598b434 (diff) | |
download | CMake-03f74a16cde9e2e7e3433054970cc7cadd31388f.zip CMake-03f74a16cde9e2e7e3433054970cc7cadd31388f.tar.gz CMake-03f74a16cde9e2e7e3433054970cc7cadd31388f.tar.bz2 |
VS: Convert GetIDEVersion to non-virtual table lookup
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.h')
-rw-r--r-- | Source/cmGlobalVisualStudioGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.h b/Source/cmGlobalVisualStudioGenerator.h index c891160..6779dc8 100644 --- a/Source/cmGlobalVisualStudioGenerator.h +++ b/Source/cmGlobalVisualStudioGenerator.h @@ -137,7 +137,7 @@ protected: // below 8. virtual bool VSLinksDependencies() const { return true; } - virtual const char* GetIDEVersion() const = 0; + const char* GetIDEVersion() const; bool ComputeTargetDepends() override; class VSDependSet : public std::set<std::string> |