[Cmake-commits] CMake branch, next, updated. v2.8.9-730-gadeca53

Alexander Neundorf neundorf at kde.org
Mon Sep 24 16:42:57 EDT 2012


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  adeca53e570ec4c17d3e23d95e95518ef500fa7d (commit)
       via  a3a37956edfe311c5ea23ba3dfe01a86e7240f25 (commit)
      from  7a1c7d965874c5a4c2b9de9eca5234e7a54fa734 (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=adeca53e570ec4c17d3e23d95e95518ef500fa7d
commit adeca53e570ec4c17d3e23d95e95518ef500fa7d
Merge: 7a1c7d9 a3a3795
Author:     Alexander Neundorf <neundorf at kde.org>
AuthorDate: Mon Sep 24 16:42:55 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Sep 24 16:42:55 2012 -0400

    Merge topic 'export-sets-2' into next
    
    a3a3795 fix warning about int sizes


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a3a37956edfe311c5ea23ba3dfe01a86e7240f25
commit a3a37956edfe311c5ea23ba3dfe01a86e7240f25
Author:     Alex Neundorf <neundorf at kde.org>
AuthorDate: Mon Sep 24 22:42:04 2012 +0200
Commit:     Alex Neundorf <neundorf at kde.org>
CommitDate: Mon Sep 24 22:42:04 2012 +0200

    fix warning about int sizes
    
    Alex

diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx
index ab8afdc..bedc164 100644
--- a/Source/cmExportFileGenerator.cxx
+++ b/Source/cmExportFileGenerator.cxx
@@ -234,7 +234,7 @@ cmExportFileGenerator
       else
         {
         std::vector<std::string> namespaces = this->FindNamespaces(mf, *li);
-        unsigned int targetOccurrences = namespaces.size();
+        size_t targetOccurrences = namespaces.size();
 
         if (targetOccurrences == 1)
           {

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list