fix compilation in C++98

This commit is contained in:
Gael Guennebaud 2017-06-09 12:45:01 +02:00
parent a7be4cd1b1
commit 8640093af1

View File

@ -81,8 +81,9 @@ void check_limits_specialization()
typedef std::numeric_limits<AD> A; typedef std::numeric_limits<AD> A;
typedef std::numeric_limits<Scalar> B; typedef std::numeric_limits<Scalar> B;
bool res = std::is_base_of<B, A>::value; #if EIGEN_HAS_CXX11
VERIFY_IS_EQUAL(res, true); VERIFY(bool(std::is_base_of<B, A>::value));
#endif
} }
void test_autodiff_scalar() void test_autodiff_scalar()