summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio9Win64Generator.cxx
diff options
context:
space:
mode:
authorPatrick Gansterer <paroga@paroga.com>2012-09-14 09:16:43 (GMT)
committerPatrick Gansterer <paroga@paroga.com>2012-09-14 10:42:31 (GMT)
commitf34321a02d157a5d613874fc4dfd70b3df3d14b3 (patch)
tree5e7a6169c36c73eb483114fd28716f85cf9ca1bd /Source/cmGlobalVisualStudio9Win64Generator.cxx
parentc5f36de99ede2d53fe785f96bc3dc0f73bca9c64 (diff)
downloadCMake-f34321a02d157a5d613874fc4dfd70b3df3d14b3.zip
CMake-f34321a02d157a5d613874fc4dfd70b3df3d14b3.tar.gz
CMake-f34321a02d157a5d613874fc4dfd70b3df3d14b3.tar.bz2
VS: Remove duplicated implementations of CreateLocalGenerator()
The IA64 and Win64 versions of the VS8 and VS9 generators contain the same code for this function as in the base class.
Diffstat (limited to 'Source/cmGlobalVisualStudio9Win64Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio9Win64Generator.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmGlobalVisualStudio9Win64Generator.cxx b/Source/cmGlobalVisualStudio9Win64Generator.cxx
index 08f537d..4d8a646 100644
--- a/Source/cmGlobalVisualStudio9Win64Generator.cxx
+++ b/Source/cmGlobalVisualStudio9Win64Generator.cxx
@@ -19,17 +19,6 @@ cmGlobalVisualStudio9Win64Generator::cmGlobalVisualStudio9Win64Generator()
this->ArchitectureId = "x64";
}
-///! Create a local generator appropriate to this Global Generator
-cmLocalGenerator *cmGlobalVisualStudio9Win64Generator::CreateLocalGenerator()
-{
- cmLocalVisualStudio7Generator *lg =
- new cmLocalVisualStudio7Generator(cmLocalVisualStudioGenerator::VS9);
- lg->SetPlatformName(this->GetPlatformName());
- lg->SetExtraFlagTable(this->GetExtraFlagTableVS8());
- lg->SetGlobalGenerator(this);
- return lg;
-}
-
//----------------------------------------------------------------------------
void cmGlobalVisualStudio9Win64Generator
::GetDocumentation(cmDocumentationEntry& entry) const