From 65607e3b8246d931bda30f34a58331a09bb05202 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Sat, 7 May 2005 13:16:49 +0000 Subject: [PATCH] Work around SunPro 5.3 issue [SVN r28715] --- integer_traits_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integer_traits_test.cpp b/integer_traits_test.cpp index ed18cac..15b454a 100644 --- a/integer_traits_test.cpp +++ b/integer_traits_test.cpp @@ -55,7 +55,7 @@ void runtest(const char * type, T) << std::endl; BOOST_CHECK(traits::is_specialized); BOOST_CHECK(traits::is_integer); - BOOST_CHECK(traits::is_integral); + BOOST_CHECK(traits::is_integral == true); BOOST_CHECK(traits::const_min == (traits::min)()); BOOST_CHECK(traits::const_max == (traits::max)()); }