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/cmGlobalGenerator.h | |
parent | 11d5088a2f02994dc14c72170c73f7d60b0fba03 (diff) | |
download | CMake-9b6a743b801dffa9f7ccab0c3e73fa8d22f3b8b9.zip CMake-9b6a743b801dffa9f7ccab0c3e73fa8d22f3b8b9.tar.gz CMake-9b6a743b801dffa9f7ccab0c3e73fa8d22f3b8b9.tar.bz2 |
cmLocalGenerator: Remove Parent pointer.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 21cbd44..2e0f7b5 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -56,9 +56,8 @@ public: cmGlobalGenerator(cmake* cm); virtual ~cmGlobalGenerator(); - cmLocalGenerator* MakeLocalGenerator( - cmState::Snapshot snapshot = cmState::Snapshot(), - cmLocalGenerator* parent = 0); + cmLocalGenerator* + MakeLocalGenerator(cmState::Snapshot snapshot = cmState::Snapshot()); ///! Get the name for this generator virtual std::string GetName() const { return "Generic"; } @@ -442,8 +441,7 @@ protected: private: ///! Create a local generator appropriate to this Global Generator - virtual cmLocalGenerator *CreateLocalGenerator(cmLocalGenerator* parent, - cmState::Snapshot snapshot); + virtual cmLocalGenerator *CreateLocalGenerator(cmState::Snapshot snapshot); cmMakefile* TryCompileOuterMakefile; // If you add a new map here, make sure it is copied |