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/cmLocalNinjaGenerator.cxx | |
parent | 11d5088a2f02994dc14c72170c73f7d60b0fba03 (diff) | |
download | CMake-9b6a743b801dffa9f7ccab0c3e73fa8d22f3b8b9.zip CMake-9b6a743b801dffa9f7ccab0c3e73fa8d22f3b8b9.tar.gz CMake-9b6a743b801dffa9f7ccab0c3e73fa8d22f3b8b9.tar.bz2 |
cmLocalGenerator: Remove Parent pointer.
Diffstat (limited to 'Source/cmLocalNinjaGenerator.cxx')
-rw-r--r-- | Source/cmLocalNinjaGenerator.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmLocalNinjaGenerator.cxx b/Source/cmLocalNinjaGenerator.cxx index cfca418..62bf8b2 100644 --- a/Source/cmLocalNinjaGenerator.cxx +++ b/Source/cmLocalNinjaGenerator.cxx @@ -23,9 +23,8 @@ #include <assert.h> cmLocalNinjaGenerator::cmLocalNinjaGenerator(cmGlobalGenerator* gg, - cmLocalGenerator* parent, cmState::Snapshot snapshot) - : cmLocalCommonGenerator(gg, parent, snapshot) + : cmLocalCommonGenerator(gg, snapshot) , HomeRelativeOutputPath("") { this->TargetImplib = "$TARGET_IMPLIB"; |