[Cmake-commits] CMake branch, next, updated. v2.8.9-734-g8a5434b

Alexander Neundorf neundorf at kde.org
Mon Sep 24 17:05:10 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  8a5434bf3d46377984c7eb416c6ae473b8028cb7 (commit)
       via  a967091ca67baa539417116a0d21edd2f2787dfe (commit)
      from  74a913f3f6235c6b6fb726145ea874da87e71ee7 (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=8a5434bf3d46377984c7eb416c6ae473b8028cb7
commit 8a5434bf3d46377984c7eb416c6ae473b8028cb7
Merge: 74a913f a967091
Author:     Alexander Neundorf <neundorf at kde.org>
AuthorDate: Mon Sep 24 17:05:08 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Sep 24 17:05:08 2012 -0400

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


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

    fix warning about int sizes
    
    Alex

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