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/cmListFileCache.h | |
parent | fc1c7cf85d045323a38c1de7ada213ecfee542a9 (diff) | |
download | CMake-52f22616852e6a6e8f642f84fa821e0c8678a679.zip CMake-52f22616852e6a6e8f642f84fa821e0c8678a679.tar.gz CMake-52f22616852e6a6e8f642f84fa821e0c8678a679.tar.bz2 |
cmListFileBacktrace: Constify API.
Diffstat (limited to 'Source/cmListFileCache.h')
-rw-r--r-- | Source/cmListFileCache.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; |