diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-02 09:30:12 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-28 16:44:38 (GMT) |
commit | 92041eec49ab4968b2d4f09e3bd71a3720d86036 (patch) | |
tree | 3ac1b51fcad7d7b18d090a72ca1cee4ff1f2fe7f /Source/cmGlobalGenerator.h | |
parent | acb006229dbc531303538f4de1dc4d16d27369a5 (diff) | |
download | CMake-92041eec49ab4968b2d4f09e3bd71a3720d86036.zip CMake-92041eec49ab4968b2d4f09e3bd71a3720d86036.tar.gz CMake-92041eec49ab4968b2d4f09e3bd71a3720d86036.tar.bz2 |
cmGlobalGenerator: Remove MakeLocalGenerator method.
Inline implementation to callers.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 2e0f7b5..91c1aac 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -56,8 +56,8 @@ public: cmGlobalGenerator(cmake* cm); virtual ~cmGlobalGenerator(); - cmLocalGenerator* - MakeLocalGenerator(cmState::Snapshot snapshot = cmState::Snapshot()); + virtual cmLocalGenerator* + CreateLocalGenerator(cmState::Snapshot snapshot = cmState::Snapshot()); ///! Get the name for this generator virtual std::string GetName() const { return "Generic"; } @@ -440,9 +440,6 @@ protected: virtual bool UseFolderProperty(); private: - ///! Create a local generator appropriate to this Global Generator - virtual cmLocalGenerator *CreateLocalGenerator(cmState::Snapshot snapshot); - cmMakefile* TryCompileOuterMakefile; // If you add a new map here, make sure it is copied // in EnableLanguagesFromGenerator |