cmListFileBacktrace: Constify API.

This commit is contained in:
Stephen Kelly 2015-07-09 22:26:51 +02:00
parent fc1c7cf85d
commit 52f2261685
2 changed files with 4 additions and 4 deletions

View File

@ -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()) if (!this->Snapshot.IsValid())
{ {
@ -412,7 +412,7 @@ void cmListFileBacktrace::PrintTitle(std::ostream& out)
out << (lfc.Line ? " at " : " in ") << lfc; out << (lfc.Line ? " at " : " in ") << lfc;
} }
void cmListFileBacktrace::PrintCallStack(std::ostream& out) void cmListFileBacktrace::PrintCallStack(std::ostream& out) const
{ {
if (!this->Snapshot.IsValid()) if (!this->Snapshot.IsValid())
{ {

View File

@ -95,8 +95,8 @@ class cmListFileBacktrace
{ {
} }
void PrintTitle(std::ostream& out); void PrintTitle(std::ostream& out) const;
void PrintCallStack(std::ostream& out); void PrintCallStack(std::ostream& out) const;
private: private:
cmCommandContext Context; cmCommandContext Context;
cmState::Snapshot Snapshot; cmState::Snapshot Snapshot;