From d96ad5638bff34ff04d1db7e6a68209d9fbaf939 Mon Sep 17 00:00:00 2001 From: Christoph Grueninger <christoph.grueninger@iws.uni-stuttgart.de> Date: Tue, 14 Feb 2012 16:32:27 +0000 Subject: [PATCH] Adapted recent changes in dune-common test for HAVE_VARIADIC_CONSTRUCTOR_SFINAE in CMake. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7771 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d6a8dcc51..2e12adcc32 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -150,13 +150,11 @@ CHECK_CXX_SOURCE_COMPILES(" # SFINAE on variadic template constructors within template classes CHECK_CXX_SOURCE_COMPILES(" - #include <cassert> #include <functional> template<typename... U> struct A { - template<typename... T, typename = typename std::enable_if<(sizeof...(T) < 2)>::type > @@ -181,8 +179,7 @@ CHECK_CXX_SOURCE_COMPILES(" int main(void) { - assert(A<int>().i + A<int>(2).i + A<int>(\"foo\",3.4).i + A<int>({2,5,6},'a',A<int>()).i == 0); - return 0; + return (A<int>().i + A<int>(2).i + A<int>("foo",3.4).i + A<int>(8,'a',A<int>()).i == 0 ? 0 : 1); } " HAVE_VARIADIC_CONSTRUCTOR_SFINAE ) -- GitLab