[Cmake-commits] CMake branch, next, updated. v3.2.2-2155-g8dc6ca9

Stephen Kelly steveire at gmail.com
Sun Apr 26 13:27:48 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  8dc6ca94d199acb52a70d5382e75a22bf504df7e (commit)
       via  53a6bbf4bfa4dc0e44de8d39a302c5ecc77b00b2 (commit)
      from  5748d01b2e56e7fc799e9ff950976137f8221d75 (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=8dc6ca94d199acb52a70d5382e75a22bf504df7e
commit 8dc6ca94d199acb52a70d5382e75a22bf504df7e
Merge: 5748d01 53a6bbf
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Apr 26 13:27:47 2015 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sun Apr 26 13:27:47 2015 -0400

    Merge topic 'refactor-cmDefinitions' into next
    
    53a6bbf4 Broken toolchains.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=53a6bbf4bfa4dc0e44de8d39a302c5ecc77b00b2
commit 53a6bbf4bfa4dc0e44de8d39a302c5ecc77b00b2
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Apr 26 19:27:26 2015 +0200
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Sun Apr 26 19:27:26 2015 +0200

    Broken toolchains.

diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index a13a97f..c51984b 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -78,7 +78,7 @@ public:
       defPtrs.push_back(&*it);
       }
     std::pair<const char*, bool> result((const char*)0, false);
-    std::vector<cmDefinitions*>::const_reverse_iterator it = defPtrs.rbegin();
+    std::vector<cmDefinitions*>::reverse_iterator it = defPtrs.rbegin();
     for ( ; it != defPtrs.rend(); ++it)
       {
       result = (*it)->Get(name);
@@ -87,7 +87,7 @@ public:
         break;
         }
       }
-    std::vector<cmDefinitions*>::const_reverse_iterator last = it;
+    std::vector<cmDefinitions*>::reverse_iterator last = it;
     // Store the result in intermediate scopes.
     for (it = defPtrs.rbegin(); it != last; ++it)
       {

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

Summary of changes:
 Source/cmMakefile.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list