diff options
author | Patrick Gansterer <paroga@paroga.com> | 2012-11-19 17:03:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-11-19 19:10:25 (GMT) |
commit | 5bdf01184baa0301bd71f486b87d225f07cd80d0 (patch) | |
tree | 4d0c6c9ae6fea860df78f8d90397a204282371a6 /Source/cmGlobalVisualStudio8Generator.h | |
parent | 8d42ab426092f24f07b43ab2717f6071a7dc01e5 (diff) | |
download | CMake-5bdf01184baa0301bd71f486b87d225f07cd80d0.zip CMake-5bdf01184baa0301bd71f486b87d225f07cd80d0.tar.gz CMake-5bdf01184baa0301bd71f486b87d225f07cd80d0.tar.bz2 |
VS: Remove GetPlatformName from platform-specific generators
Use the existing ArchitectureId to generate the PlatformName
to reduce duplicated information in the classes.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h index ec0d07c..097b796 100644 --- a/Source/cmGlobalVisualStudio8Generator.h +++ b/Source/cmGlobalVisualStudio8Generator.h @@ -33,7 +33,7 @@ public: return cmGlobalVisualStudio8Generator::GetActualName();} static const char* GetActualName() {return "Visual Studio 8 2005";} - virtual const char* GetPlatformName() const {return "Win32";} + const char* GetPlatformName() const; /** Get the documentation entry for this generator. */ static void GetDocumentation(cmDocumentationEntry& entry); |