mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 15:20:56 -06:00
cmMakefile: Create intermediate variables for snapshot frames.
This commit is contained in:
@@ -280,7 +280,8 @@ cmListFileBacktrace cmMakefile::GetBacktrace() const
|
||||
i = this->ContextStack.rbegin();
|
||||
i != this->ContextStack.rend(); ++i)
|
||||
{
|
||||
backtrace.Append(*(*i));
|
||||
cmListFileContext frame = *(*i);
|
||||
backtrace.Append(frame);
|
||||
}
|
||||
return backtrace;
|
||||
}
|
||||
@@ -295,7 +296,8 @@ cmMakefile::GetBacktrace(cmListFileContext const& lfc) const
|
||||
i = this->ContextStack.rbegin();
|
||||
i != this->ContextStack.rend(); ++i)
|
||||
{
|
||||
backtrace.Append(*(*i));
|
||||
cmListFileContext frame = *(*i);
|
||||
backtrace.Append(frame);
|
||||
}
|
||||
return backtrace;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user