[Cmake-commits] CMake branch, next, updated. v3.6.2-2588-g0f57aaf

Brad King brad.king at kitware.com
Wed Sep 28 14:18:10 EDT 2016


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  0f57aafd2b4aacb93436fdf2c55504c105e8fd31 (commit)
       via  35b9138e764b5ec7fcb7c81df57fe74a541c1490 (commit)
      from  c9a1b59ba672301b4f4a9484d578ec5b320dd883 (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0f57aafd2b4aacb93436fdf2c55504c105e8fd31
commit 0f57aafd2b4aacb93436fdf2c55504c105e8fd31
Merge: c9a1b59 35b9138
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Sep 28 14:18:09 2016 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Sep 28 14:18:09 2016 -0400

    Merge topic 'cmake_parse_arguments-PARSE_ARGV-multi-value' into next
    
    35b9138e fixup! cmake_parse_arguments: Fix PARSE_ARGV multi-value argument handling


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=35b9138e764b5ec7fcb7c81df57fe74a541c1490
commit 35b9138e764b5ec7fcb7c81df57fe74a541c1490
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Sep 28 14:17:51 2016 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Wed Sep 28 14:17:51 2016 -0400

    fixup! cmake_parse_arguments: Fix PARSE_ARGV multi-value argument handling

diff --git a/Source/cmParseArgumentsCommand.cxx b/Source/cmParseArgumentsCommand.cxx
index fb8dee9..55d71ea 100644
--- a/Source/cmParseArgumentsCommand.cxx
+++ b/Source/cmParseArgumentsCommand.cxx
@@ -8,7 +8,7 @@ static std::string escape_arg(const std::string& arg)
 {
   // replace ";" with "\;" so output argument lists will split correctly
   std::string escapedArg;
-  for (unsigned int i = 0; i < arg.size(); ++i) {
+  for (size_t i = 0; i < arg.size(); ++i) {
     if (arg[i] == ';') {
       escapedArg += '\\';
     }

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

Summary of changes:
 Source/cmParseArgumentsCommand.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list