From eedb7eeacf45228da5de90ec80d6b6776b9a0a02 Mon Sep 17 00:00:00 2001 From: Everton Constantino Date: Tue, 7 Jan 2020 14:35:35 +0000 Subject: Protecting integer_types's long long test with a check to see if we have CXX11 support. --- test/integer_types.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/integer_types.cpp') diff --git a/test/integer_types.cpp b/test/integer_types.cpp index 3f9030d77..31f4100c5 100644 --- a/test/integer_types.cpp +++ b/test/integer_types.cpp @@ -162,10 +162,12 @@ EIGEN_DECLARE_TEST(integer_types) CALL_SUBTEST_6( integer_type_tests(Matrix()) ); +#if EIGEN_HAS_CXX11 CALL_SUBTEST_7( integer_type_tests(Matrix()) ); CALL_SUBTEST_7( signed_integer_type_tests(Matrix()) ); CALL_SUBTEST_8( integer_type_tests(Matrix(1, 5)) ); +#endif } CALL_SUBTEST_9( integer_types_extra<0>() ); } -- cgit v1.2.3