[Cmake-commits] CMake branch, next, updated. v2.8.12.1-5430-gb9e18c7

Stephen Kelly steveire at gmail.com
Tue Nov 19 13:31:38 EST 2013


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  b9e18c73bf9229fe491d989a2efc7132da33fbe8 (commit)
       via  99288429e42a0c15a982a48031a712f448903cdf (commit)
      from  b8659f3d2a5edf485681ea05ca0e55615d6d1c96 (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=b9e18c73bf9229fe491d989a2efc7132da33fbe8
commit b9e18c73bf9229fe491d989a2efc7132da33fbe8
Merge: b8659f3 9928842
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Tue Nov 19 13:31:33 2013 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Nov 19 13:31:33 2013 -0500

    Merge topic 'constify' into next
    
    9928842 Add another const.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=99288429e42a0c15a982a48031a712f448903cdf
commit 99288429e42a0c15a982a48031a712f448903cdf
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Tue Nov 19 19:30:59 2013 +0100
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Tue Nov 19 19:30:59 2013 +0100

    Add another const.

diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx
index 3835ac9..635d8cb 100644
--- a/Source/cmVisualStudio10TargetGenerator.cxx
+++ b/Source/cmVisualStudio10TargetGenerator.cxx
@@ -1810,7 +1810,7 @@ void cmVisualStudio10TargetGenerator::WriteEvent(
   for(std::vector<cmCustomCommand>::const_iterator i = commands.begin();
       i != commands.end(); ++i)
     {
-    cmCustomCommand& command = *i;
+    const cmCustomCommand& command = *i;
     comment += pre;
     comment += lg->ConstructComment(command);
     script += pre;

-----------------------------------------------------------------------

Summary of changes:
 Source/cmVisualStudio10TargetGenerator.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list