[Cmake-commits] CMake branch, next, updated. v2.8.12.2-7737-gb874d67

Stephen Kelly steveire at gmail.com
Sun Feb 16 06:18:03 EST 2014


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  b874d677e4b4e66e9cdd94f2aa7110c255758a50 (commit)
       via  617796eaf0d514bbbf75e8d7ec1b24d007ac8f37 (commit)
      from  07b9b62e8bcb56b3c7b348ac912d433bb898e482 (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=b874d677e4b4e66e9cdd94f2aa7110c255758a50
commit b874d677e4b4e66e9cdd94f2aa7110c255758a50
Merge: 07b9b62 617796e
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Feb 16 06:18:02 2014 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sun Feb 16 06:18:02 2014 -0500

    Merge topic 'cmake-toolchain-requirements' into next
    
    617796ea Fix std::size_t test.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=617796eaf0d514bbbf75e8d7ec1b24d007ac8f37
commit 617796eaf0d514bbbf75e8d7ec1b24d007ac8f37
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Feb 16 12:17:14 2014 +0100
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Sun Feb 16 12:17:14 2014 +0100

    Fix std::size_t test.

diff --git a/Tests/SystemInformation/CMakeLists.txt b/Tests/SystemInformation/CMakeLists.txt
index 4d93891..cd6b2e3 100644
--- a/Tests/SystemInformation/CMakeLists.txt
+++ b/Tests/SystemInformation/CMakeLists.txt
@@ -151,19 +151,12 @@ int foo()
 }
 ")
 
-test_compiler_capability(HAVE_WORKING_SIZE_T "
+test_compiler_capability(HAVE_STD_SIZE_T "
 #include <cstddef>
 
-template<long>
-void bar();
-template<>
-void bar<sizeof(std::size_t)>()
-{
-
-}
 void foo()
 {
-  bar<sizeof(size_t)>();
+  std::size_t sz = sizeof(int);
 }
 ")
 

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

Summary of changes:
 Tests/SystemInformation/CMakeLists.txt |   11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list