[Cmake-commits] CMake branch, next, updated. v3.3.0-rc4-1114-gf047237
Stephen Kelly
steveire at gmail.com
Sat Jul 18 05:13:00 EDT 2015
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via f047237fc18b734bcec3d488ba7c8c3ce80d582b (commit)
via 52f22616852e6a6e8f642f84fa821e0c8678a679 (commit)
from 2d55817a742f7fc95a639d09e791c479f80b6af4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f047237fc18b734bcec3d488ba7c8c3ce80d582b
commit f047237fc18b734bcec3d488ba7c8c3ce80d582b
Merge: 2d55817 52f2261
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Sat Jul 18 05:12:59 2015 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sat Jul 18 05:12:59 2015 -0400
Merge topic 'minor-cleanups' into next
52f22616 cmListFileBacktrace: Constify API.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=52f22616852e6a6e8f642f84fa821e0c8678a679
commit 52f22616852e6a6e8f642f84fa821e0c8678a679
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Thu Jul 9 22:26:51 2015 +0200
Commit: Stephen Kelly <steveire at gmail.com>
CommitDate: Sat Jul 18 11:10:15 2015 +0200
cmListFileBacktrace: Constify API.
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;
-----------------------------------------------------------------------
Summary of changes:
Source/cmListFileCache.cxx | 4 ++--
Source/cmListFileCache.h | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list