Protecting integer_types's long long test with a check to see if we have CXX11 support.

This commit is contained in:
Everton Constantino 2020-01-07 14:35:35 +00:00 committed by Christoph Hertzberg
parent bcbaad6d87
commit eedb7eeacf

View File

@ -162,10 +162,12 @@ EIGEN_DECLARE_TEST(integer_types)
CALL_SUBTEST_6( integer_type_tests(Matrix<unsigned short, 4, 4>()) );
#if EIGEN_HAS_CXX11
CALL_SUBTEST_7( integer_type_tests(Matrix<long long, 11, 13>()) );
CALL_SUBTEST_7( signed_integer_type_tests(Matrix<long long, 11, 13>()) );
CALL_SUBTEST_8( integer_type_tests(Matrix<unsigned long long, Dynamic, 5>(1, 5)) );
#endif
}
CALL_SUBTEST_9( integer_types_extra<0>() );
}