[Cmake-commits] CMake branch, next, updated. v2.8.10.1-1073-gf272ccd

Brad King brad.king at kitware.com
Tue Nov 27 08:01:08 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  f272ccd54070949f5f57c00a1566677e627002c8 (commit)
       via  474d93078d39adea7e739881bb25b7c5b1fe3606 (commit)
      from  5608dda53247c57b62a107e829281c110378774a (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=f272ccd54070949f5f57c00a1566677e627002c8
commit f272ccd54070949f5f57c00a1566677e627002c8
Merge: 5608dda 474d930
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Nov 27 08:01:04 2012 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Nov 27 08:01:04 2012 -0500

    Merge topic 'windows-ce' into next
    
    474d930 VS: Fix WCEPlatformParser member order


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=474d93078d39adea7e739881bb25b7c5b1fe3606
commit 474d93078d39adea7e739881bb25b7c5b1fe3606
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Nov 27 07:59:31 2012 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Tue Nov 27 07:59:31 2012 -0500

    VS: Fix WCEPlatformParser member order
    
    Declare members in the same order as they are initialized
    in the constructor.

diff --git a/Source/cmVisualStudioWCEPlatformParser.h b/Source/cmVisualStudioWCEPlatformParser.h
index 60de01e..28061fd 100644
--- a/Source/cmVisualStudioWCEPlatformParser.h
+++ b/Source/cmVisualStudioWCEPlatformParser.h
@@ -48,8 +48,8 @@ private:
   std::map<std::string, std::string> Macros;
   std::vector<std::string> AvailablePlatforms;
 
-  bool FoundRequiredName;
   const char* RequiredName;
+  bool FoundRequiredName;
 };
 
 #endif

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list