diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-12-26 09:38:36 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-07-21 07:25:32 (GMT) |
commit | 1eebc2956321c2e7da00a5d35e207bedb899c804 (patch) | |
tree | a8c98c7349a686061cb035e8859e8925bc79c458 /Source/cmIfCommand.cxx | |
parent | 82aa6941e9b292d95820b5723b4dcc8b70fbb417 (diff) | |
download | CMake-1eebc2956321c2e7da00a5d35e207bedb899c804.zip CMake-1eebc2956321c2e7da00a5d35e207bedb899c804.tar.gz CMake-1eebc2956321c2e7da00a5d35e207bedb899c804.tar.bz2 |
cmCommand: deprecate functions GetMakefile and SetError
Replace the members for the Makefile and the Error with a
cmExecutionStatus. Re-implement GetMakefile and SetError based on that.
Both functions should be called directly on the cmExecutionStatus that is
passed to InitialPass. This will help us make all Commands immutable and
remove the need for cloning.
Diffstat (limited to 'Source/cmIfCommand.cxx')
-rw-r--r-- | Source/cmIfCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmIfCommand.cxx b/Source/cmIfCommand.cxx index 625dd45..4edea17 100644 --- a/Source/cmIfCommand.cxx +++ b/Source/cmIfCommand.cxx @@ -47,7 +47,7 @@ bool cmIfFunctionBlocker::IsFunctionBlocked(const cmListFileFunction& lff, } // execute the functions for the true parts of the if statement - cmExecutionStatus status; + cmExecutionStatus status(mf); int scopeDepth = 0; for (cmListFileFunction const& func : this->Functions) { // keep track of scope depth |