diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-02 09:08:49 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-28 16:44:38 (GMT) |
commit | 9b6a743b801dffa9f7ccab0c3e73fa8d22f3b8b9 (patch) | |
tree | 936def161a94772aa4a1aac54da7ef039188d1f9 /Source/cmGlobalVisualStudio6Generator.cxx | |
parent | 11d5088a2f02994dc14c72170c73f7d60b0fba03 (diff) | |
download | CMake-9b6a743b801dffa9f7ccab0c3e73fa8d22f3b8b9.zip CMake-9b6a743b801dffa9f7ccab0c3e73fa8d22f3b8b9.tar.gz CMake-9b6a743b801dffa9f7ccab0c3e73fa8d22f3b8b9.tar.bz2 |
cmLocalGenerator: Remove Parent pointer.
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index b7c897c..48c3d32 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -173,10 +173,10 @@ cmGlobalVisualStudio6Generator::GenerateBuildCommand( ///! Create a local generator appropriate to this Global Generator cmLocalGenerator * -cmGlobalVisualStudio6Generator::CreateLocalGenerator(cmLocalGenerator* parent, +cmGlobalVisualStudio6Generator::CreateLocalGenerator( cmState::Snapshot snapshot) { - return new cmLocalVisualStudio6Generator(this, parent, snapshot); + return new cmLocalVisualStudio6Generator(this, snapshot); } |