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 <[email protected]>
AuthorDate: Sun Feb 16 06:18:02 2014 -0500
Commit:     CMake Topic Stage <[email protected]>
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 <[email protected]>
AuthorDate: Sun Feb 16 12:17:14 2014 +0100
Commit:     Stephen Kelly <[email protected]>
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
_______________________________________________
Cmake-commits mailing list
[email protected]
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits

Reply via email to