[Cmake-commits] CMake branch, next, updated. v2.8.9-529-g1fcdc84

Rolf Eike Beer eike at sf-mail.de
Fri Sep 14 02:05:07 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  1fcdc845b376b7a7b624f3c4d2b2283986a2ec9c (commit)
       via  584e5186b9f932529a18dc03447e0140fc266ef0 (commit)
      from  bf44e1f584cf53387391b498caf14e2a99012b8c (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=1fcdc845b376b7a7b624f3c4d2b2283986a2ec9c
commit 1fcdc845b376b7a7b624f3c4d2b2283986a2ec9c
Merge: bf44e1f 584e518
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Fri Sep 14 02:05:04 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Sep 14 02:05:04 2012 -0400

    Merge topic 'document-MSVC-variables-12567' into next
    
    584e518 MSVCnn documentation: next try to fix compiler warning


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=584e5186b9f932529a18dc03447e0140fc266ef0
commit 584e5186b9f932529a18dc03447e0140fc266ef0
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Fri Sep 14 08:04:30 2012 +0200
Commit:     Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Fri Sep 14 08:04:30 2012 +0200

    MSVCnn documentation: next try to fix compiler warning

diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx
index 1a23e7b..981d576 100644
--- a/Source/cmDocumentVariables.cxx
+++ b/Source/cmDocumentVariables.cxx
@@ -995,7 +995,7 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
   int msvc_versions[] = { 60, 70, 71, 80, 90, 100, 110, 0 };
   for (int i = 0; msvc_versions[i] != 0; i ++)
     {
-    const char minor = '0' + ((char)msvc_versions[i] % 10);
+    const char minor = '0' + (char)(msvc_versions[i] % 10);
     cmStdString varName = "MSVC";
     cmsys_ios::ostringstream majorStr;
 

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list