[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1224-gade68f4

David Cole david.cole at kitware.com
Wed Dec 5 13:30:27 EST 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  ade68f4d99eea77080106c1aa472e3ded12039dd (commit)
       via  354ecc1e1f28b9f2412fa015064353c6e20cfe92 (commit)
      from  6534e05030001fc1e9ac625bd310dc70a8ae6666 (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=ade68f4d99eea77080106c1aa472e3ded12039dd
commit ade68f4d99eea77080106c1aa472e3ded12039dd
Merge: 6534e05 354ecc1
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Wed Dec 5 13:30:23 2012 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Dec 5 13:30:23 2012 -0500

    Merge topic 'add-timestamp-subcommands' into next
    
    354ecc1 CMake: Fix dashboard warnings


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=354ecc1e1f28b9f2412fa015064353c6e20cfe92
commit 354ecc1e1f28b9f2412fa015064353c6e20cfe92
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Wed Dec 5 13:14:56 2012 -0500
Commit:     David Cole <david.cole at kitware.com>
CommitDate: Wed Dec 5 13:19:09 2012 -0500

    CMake: Fix dashboard warnings
    
    ...in the new file and string TIMESTAMP sub-commands

diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx
index 42df3a1..0cdbb82 100644
--- a/Source/cmFileCommand.cxx
+++ b/Source/cmFileCommand.cxx
@@ -3263,7 +3263,7 @@ bool cmFileCommand::HandleTimestampCommand(
     return false;
     }
 
-  int argsIndex = 1;
+  unsigned int argsIndex = 1;
 
   const std::string& filename = args[argsIndex++];
 
diff --git a/Source/cmStringCommand.cxx b/Source/cmStringCommand.cxx
index c402738..e49edd8 100644
--- a/Source/cmStringCommand.cxx
+++ b/Source/cmStringCommand.cxx
@@ -901,7 +901,7 @@ bool cmStringCommand
     return false;
     }
 
-  int argsIndex = 1;
+  unsigned int argsIndex = 1;
 
   const std::string &outputVariable = args[argsIndex++];
 

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list