[Cmake-commits] CMake branch, next, updated. v2.8.9-428-g4b87304

Brad King brad.king at kitware.com
Mon Sep 10 09:41:29 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  4b87304fe253512fc4a0cdd4296600d5cd9f2cac (commit)
       via  5cce00f22701a7aeab1ba0a403682c43d6dab267 (commit)
      from  aad6d5dde83c664ec99bcb2e4ce1594a064d0cdf (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=4b87304fe253512fc4a0cdd4296600d5cd9f2cac
commit 4b87304fe253512fc4a0cdd4296600d5cd9f2cac
Merge: aad6d5d 5cce00f
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Sep 10 09:41:26 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Sep 10 09:41:26 2012 -0400

    Merge topic 'docbook-validate' into next
    
    5cce00f docbook: Fix VS warning about int->bool conversion


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5cce00f22701a7aeab1ba0a403682c43d6dab267
commit 5cce00f22701a7aeab1ba0a403682c43d6dab267
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Sep 10 09:40:17 2012 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Sep 10 09:40:17 2012 -0400

    docbook: Fix VS warning about int->bool conversion
    
    Fix the IsAlnum forwarding signature to avoid
    
     Source\cmDocumentationFormatterDocbook.cxx(19):
     warning C4800: 'int' : forcing value to bool 'true' or 'false'

diff --git a/Source/cmDocumentationFormatterDocbook.cxx b/Source/cmDocumentationFormatterDocbook.cxx
index fe78005..706ce0a 100644
--- a/Source/cmDocumentationFormatterDocbook.cxx
+++ b/Source/cmDocumentationFormatterDocbook.cxx
@@ -14,7 +14,7 @@
 #include <algorithm>
 #include <ctype.h> // for isalnum
 
-static bool cmIsAlnum(char c)
+static int cmIsAlnum(int c)
 {
   return isalnum(c);
 }

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list