diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-01-02 08:25:49 -0500 |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2019-01-02 08:25:49 -0500 |
commit | 77d83568e0aa96c34520b78e3671aa0d140a158e (patch) | |
tree | 5fdcf8fd49076c141364770529bbf9a9725c6783 /Source/cmGlobalVisualStudio10Generator.h | |
parent | 88f1e79f3e8076bd57d9ae54037fd05f655c2960 (diff) | |
download | cmake-77d83568e0aa96c34520b78e3671aa0d140a158e.tar.gz |
cmGlobalVisualStudioGenerator::GetIDEVersion(): const added
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio10Generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.h b/Source/cmGlobalVisualStudio10Generator.h index 15244ac12c..dc49deda4a 100644 --- a/Source/cmGlobalVisualStudio10Generator.h +++ b/Source/cmGlobalVisualStudio10Generator.h @@ -140,7 +140,7 @@ protected: virtual bool SelectWindowsPhoneToolset(std::string& toolset) const; virtual bool SelectWindowsStoreToolset(std::string& toolset) const; - const char* GetIDEVersion() override { return "10.0"; } + const char* GetIDEVersion() const override { return "10.0"; } std::string const& GetMSBuildCommand(); |