diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-09 20:26:51 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-18 09:10:15 (GMT) |
commit | 52f22616852e6a6e8f642f84fa821e0c8678a679 (patch) | |
tree | 24caaf80c1c9d6f45ab53a89fc8173be8f390661 /Source | |
parent | fc1c7cf85d045323a38c1de7ada213ecfee542a9 (diff) | |
download | CMake-52f22616852e6a6e8f642f84fa821e0c8678a679.zip CMake-52f22616852e6a6e8f642f84fa821e0c8678a679.tar.gz CMake-52f22616852e6a6e8f642f84fa821e0c8678a679.tar.bz2 |
cmListFileBacktrace: Constify API.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmListFileCache.cxx | 4 | ||||
-rw-r--r-- | Source/cmListFileCache.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmListFileCache.cxx b/Source/cmListFileCache.cxx index 1097dc2..bff2986 100644 --- a/Source/cmListFileCache.cxx +++ b/Source/cmListFileCache.cxx @@ -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()) { diff --git a/Source/cmListFileCache.h b/Source/cmListFileCache.h index aa8a34c..0afd7f5 100644 --- a/Source/cmListFileCache.h +++ b/Source/cmListFileCache.h @@ -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; |