cmListFileBacktrace: Constify API.
This commit is contained in:
parent
fc1c7cf85d
commit
52f2261685
|
@ -398,7 +398,7 @@ bool cmListFileParser::AddArgument(cmListFileLexer_Token* token,
|
|||
}
|
||||
}
|
||||
|
||||
void cmListFileBacktrace::PrintTitle(std::ostream& out)
|
||||
void cmListFileBacktrace::PrintTitle(std::ostream& out) const
|
||||
{
|
||||
if (!this->Snapshot.IsValid())
|
||||
{
|
||||
|
@ -412,7 +412,7 @@ void cmListFileBacktrace::PrintTitle(std::ostream& out)
|
|||
out << (lfc.Line ? " at " : " in ") << lfc;
|
||||
}
|
||||
|
||||
void cmListFileBacktrace::PrintCallStack(std::ostream& out)
|
||||
void cmListFileBacktrace::PrintCallStack(std::ostream& out) const
|
||||
{
|
||||
if (!this->Snapshot.IsValid())
|
||||
{
|
||||
|
|
|
@ -95,8 +95,8 @@ class cmListFileBacktrace
|
|||
{
|
||||
}
|
||||
|
||||
void PrintTitle(std::ostream& out);
|
||||
void PrintCallStack(std::ostream& out);
|
||||
void PrintTitle(std::ostream& out) const;
|
||||
void PrintCallStack(std::ostream& out) const;
|
||||
private:
|
||||
cmCommandContext Context;
|
||||
cmState::Snapshot Snapshot;
|
||||
|
|
Loading…
Reference in New Issue