[Cmake-commits] CMake branch, next, updated. v2.8.2-951-g7075b00

Bill Hoffman bill.hoffman at kitware.com
Tue Sep 28 16:02:50 EDT 2010


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  7075b00828e015cfb587d1a9141a2fd0ff671fee (commit)
       via  4ebc24657eab201a14ee44c41540609bd86a9397 (commit)
      from  6dc009c46581435241af70ed54ab17c658ceddf4 (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=7075b00828e015cfb587d1a9141a2fd0ff671fee
commit 7075b00828e015cfb587d1a9141a2fd0ff671fee
Merge: 6dc009c 4ebc246
Author:     Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Tue Sep 28 16:02:28 2010 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Sep 28 16:02:28 2010 -0400

    Merge topic 'xcode_source_group_fix_7932' into next
    
    4ebc246 Fix shadow warning in groups code.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=4ebc24657eab201a14ee44c41540609bd86a9397
commit 4ebc24657eab201a14ee44c41540609bd86a9397
Author:     Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Tue Sep 28 16:01:18 2010 -0400
Commit:     Bill Hoffman <bill.hoffman at kitware.com>
CommitDate: Tue Sep 28 16:01:18 2010 -0400

    Fix shadow warning in groups code.

diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 3603ddf..78df0e4 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -2448,7 +2448,7 @@ void cmGlobalXCodeGenerator::CreateGroups(cmLocalGenerator* root,
 
       // Create all of the groups that should be created for this target.
       // Loop through every source group.
-      for(unsigned int i = 0; i < sourceGroups.size(); ++i)
+      for(unsigned int idx = 0; idx < sourceGroups.size(); ++idx)
         {
         this->CreateSourceGroup( sourceGroups[i], cmtarget, false );
         }

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list