summaryrefslogtreecommitdiff
path: root/Source/cmGlobalVisualStudio8Generator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-09 11:50:21 -0500
committerBrad King <brad.king@kitware.com>2019-01-10 07:52:49 -0500
commit6d99406e698a3d1b0b69b0fc0f6e09e93fc4ed79 (patch)
treee6dd4952bee7c38f8ef81b027c66f3f5e0a7de17 /Source/cmGlobalVisualStudio8Generator.h
parent03f74a16cde9e2e7e3433054970cc7cadd31388f (diff)
downloadcmake-6d99406e698a3d1b0b69b0fc0f6e09e93fc4ed79.tar.gz
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.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h
index 0ecf59ff9f..cacfa68a9a 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