cmMakefile: Create intermediate variables for snapshot frames.
This commit is contained in:
parent
821f91d6ab
commit
91158a3369
|
@ -280,7 +280,8 @@ cmListFileBacktrace cmMakefile::GetBacktrace() const
|
||||||
i = this->ContextStack.rbegin();
|
i = this->ContextStack.rbegin();
|
||||||
i != this->ContextStack.rend(); ++i)
|
i != this->ContextStack.rend(); ++i)
|
||||||
{
|
{
|
||||||
backtrace.Append(*(*i));
|
cmListFileContext frame = *(*i);
|
||||||
|
backtrace.Append(frame);
|
||||||
}
|
}
|
||||||
return backtrace;
|
return backtrace;
|
||||||
}
|
}
|
||||||
|
@ -295,7 +296,8 @@ cmMakefile::GetBacktrace(cmListFileContext const& lfc) const
|
||||||
i = this->ContextStack.rbegin();
|
i = this->ContextStack.rbegin();
|
||||||
i != this->ContextStack.rend(); ++i)
|
i != this->ContextStack.rend(); ++i)
|
||||||
{
|
{
|
||||||
backtrace.Append(*(*i));
|
cmListFileContext frame = *(*i);
|
||||||
|
backtrace.Append(frame);
|
||||||
}
|
}
|
||||||
return backtrace;
|
return backtrace;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue