summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-12-26 09:30:31 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-05-09 21:49:14 (GMT)
commit67a8d907adbc587021e9eba603cb789da09926d8 (patch)
tree564f7cb7813e9f79eb6f9ff5e5fa4db1e9bd62c5 /Source/cmMakefile.cxx
parent0c519c70297bd2fd6e139d74c6b175c304c09192 (diff)
downloadCMake-67a8d907adbc587021e9eba603cb789da09926d8.zip
CMake-67a8d907adbc587021e9eba603cb789da09926d8.tar.gz
CMake-67a8d907adbc587021e9eba603cb789da09926d8.tar.bz2
cmExecutionStatus: Remove arguments from setters
The setters are only used to set boolean values. The values are never reset individually.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index cb11060..3569abe 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -118,7 +118,7 @@ void cmMakefile::IssueMessage(cmake::MessageType t,
{
if (!this->ExecutionStatusStack.empty()) {
if ((t == cmake::FATAL_ERROR) || (t == cmake::INTERNAL_ERROR)) {
- this->ExecutionStatusStack.back()->SetNestedError(true);
+ this->ExecutionStatusStack.back()->SetNestedError();
}
}
this->GetCMakeInstance()->IssueMessage(t, text, this->GetBacktrace());