diff options
author | Brad King <brad.king@kitware.com> | 2019-01-09 16:50:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-10 12:52:49 (GMT) |
commit | 6d99406e698a3d1b0b69b0fc0f6e09e93fc4ed79 (patch) | |
tree | e6dd4952bee7c38f8ef81b027c66f3f5e0a7de17 /Source/cmGlobalVisualStudio8Generator.h | |
parent | 03f74a16cde9e2e7e3433054970cc7cadd31388f (diff) | |
download | CMake-6d99406e698a3d1b0b69b0fc0f6e09e93fc4ed79.zip CMake-6d99406e698a3d1b0b69b0fc0f6e09e93fc4ed79.tar.gz CMake-6d99406e698a3d1b0b69b0fc0f6e09e93fc4ed79.tar.bz2 |
VS: Move ExpressEdition member to top-level generator
We no longer support any VS versions that pre-date introduction of
express editions.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h index 0ecf59f..cacfa68 100644 --- a/Source/cmGlobalVisualStudio8Generator.h +++ b/Source/cmGlobalVisualStudio8Generator.h @@ -44,9 +44,6 @@ public: return !this->WindowsCEVersion.empty(); } - /** Is the installed VS an Express edition? */ - bool IsExpressEdition() const { return this->ExpressEdition; } - protected: void AddExtraIDETargets() override; @@ -76,6 +73,5 @@ protected: std::string Name; std::string WindowsCEVersion; - bool ExpressEdition; }; #endif |