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/cmGlobalVisualStudio9IA64Generator.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/cmGlobalVisualStudio9IA64Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio9IA64Generator.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmGlobalVisualStudio9IA64Generator.cxx b/Source/cmGlobalVisualStudio9IA64Generator.cxx index 993340a..38dbfac 100644 --- a/Source/cmGlobalVisualStudio9IA64Generator.cxx +++ b/Source/cmGlobalVisualStudio9IA64Generator.cxx @@ -19,17 +19,6 @@ cmGlobalVisualStudio9IA64Generator::cmGlobalVisualStudio9IA64Generator() this->ArchitectureId = "Itanium"; } -///! Create a local generator appropriate to this Global Generator -cmLocalGenerator *cmGlobalVisualStudio9IA64Generator::CreateLocalGenerator() -{ - cmLocalVisualStudio7Generator *lg = - new cmLocalVisualStudio7Generator(cmLocalVisualStudioGenerator::VS9); - lg->SetPlatformName(this->GetPlatformName()); - lg->SetExtraFlagTable(this->GetExtraFlagTableVS8()); - lg->SetGlobalGenerator(this); - return lg; -} - //---------------------------------------------------------------------------- void cmGlobalVisualStudio9IA64Generator ::GetDocumentation(cmDocumentationEntry& entry) const |