diff options
author | Yury G. Kudryashov <urkud.urkud@gmail.com> | 2012-02-29 07:49:42 (GMT) |
---|---|---|
committer | Yury G. Kudryashov <urkud.urkud@gmail.com> | 2012-02-29 07:49:42 (GMT) |
commit | 89403bf87f21d9bccb9c73afb5df914cb88ec9ee (patch) | |
tree | 8024d4dc0815f868f27dd3d7919f129fa3309691 /Source/cmMakefile.h | |
parent | 26519d591ea28d3f26f34c625c2d57db6f302d63 (diff) | |
download | CMake-89403bf87f21d9bccb9c73afb5df914cb88ec9ee.zip CMake-89403bf87f21d9bccb9c73afb5df914cb88ec9ee.tar.gz CMake-89403bf87f21d9bccb9c73afb5df914cb88ec9ee.tar.bz2 |
Rename UsedCommands to FinalPassCommands
When I read 'UsedCommands' I thought that it holds all commands used in the
file, not only those that have FinalPass().
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 1c46a73..f1f318a 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -620,12 +620,6 @@ public: */ bool CanIWriteThisFile(const char* fileName); - /** - * Get the vector of used command instances. - */ - const std::vector<cmCommand*>& GetUsedCommands() const - {return this->UsedCommands;} - #if defined(CMAKE_BUILD_WITH_CMAKE) /** * Get the vector source groups. @@ -913,7 +907,7 @@ protected: std::vector<cmSourceGroup> SourceGroups; #endif - std::vector<cmCommand*> UsedCommands; + std::vector<cmCommand*> FinalPassCommands; cmLocalGenerator* LocalGenerator; bool IsFunctionBlocked(const cmListFileFunction& lff, cmExecutionStatus &status); |