cmMakefile: Simplify IssueMessage implementation
It is only called during configure time when the execution stack is non-empty.
This commit is contained in:
parent
33bb9cfa36
commit
2af853deb5
@ -115,11 +115,9 @@ cmMakefile::~cmMakefile()
|
|||||||
void cmMakefile::IssueMessage(cmake::MessageType t,
|
void cmMakefile::IssueMessage(cmake::MessageType t,
|
||||||
std::string const& text) const
|
std::string const& text) const
|
||||||
{
|
{
|
||||||
// Collect context information.
|
assert(!this->ExecutionStatusStack.empty());
|
||||||
if (!this->ExecutionStatusStack.empty()) {
|
if ((t == cmake::FATAL_ERROR) || (t == cmake::INTERNAL_ERROR)) {
|
||||||
if ((t == cmake::FATAL_ERROR) || (t == cmake::INTERNAL_ERROR)) {
|
this->ExecutionStatusStack.back()->SetNestedError(true);
|
||||||
this->ExecutionStatusStack.back()->SetNestedError(true);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
this->GetCMakeInstance()->IssueMessage(t, text, this->GetBacktrace());
|
this->GetCMakeInstance()->IssueMessage(t, text, this->GetBacktrace());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user