diff options
author | Patrick Gansterer <paroga@paroga.com> | 2012-09-14 09:16:43 (GMT) |
---|---|---|
committer | Patrick Gansterer <paroga@paroga.com> | 2012-09-14 10:42:31 (GMT) |
commit | f34321a02d157a5d613874fc4dfd70b3df3d14b3 (patch) | |
tree | 5e7a6169c36c73eb483114fd28716f85cf9ca1bd /Source/cmGlobalVisualStudio8Win64Generator.cxx | |
parent | c5f36de99ede2d53fe785f96bc3dc0f73bca9c64 (diff) | |
download | CMake-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/cmGlobalVisualStudio8Win64Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio8Win64Generator.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmGlobalVisualStudio8Win64Generator.cxx b/Source/cmGlobalVisualStudio8Win64Generator.cxx index 60e45b8..164d116 100644 --- a/Source/cmGlobalVisualStudio8Win64Generator.cxx +++ b/Source/cmGlobalVisualStudio8Win64Generator.cxx @@ -22,17 +22,6 @@ cmGlobalVisualStudio8Win64Generator::cmGlobalVisualStudio8Win64Generator() this->ArchitectureId = "x64"; } -///! Create a local generator appropriate to this Global Generator -cmLocalGenerator *cmGlobalVisualStudio8Win64Generator::CreateLocalGenerator() -{ - cmLocalVisualStudio7Generator *lg - = new cmLocalVisualStudio7Generator(cmLocalVisualStudioGenerator::VS8); - lg->SetPlatformName(this->GetPlatformName()); - lg->SetExtraFlagTable(this->GetExtraFlagTableVS8()); - lg->SetGlobalGenerator(this); - return lg; -} - //---------------------------------------------------------------------------- void cmGlobalVisualStudio8Win64Generator ::GetDocumentation(cmDocumentationEntry& entry) const |