From fa671bba10844de68b2bc739465a1a09698d783f Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 1 Feb 2005 11:01:02 +0000 Subject: [PATCH] gcc fix. [SVN r26987] --- include/boost/type_traits/is_abstract.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits/is_abstract.hpp b/include/boost/type_traits/is_abstract.hpp index 3c8457f..27b2700 100755 --- a/include/boost/type_traits/is_abstract.hpp +++ b/include/boost/type_traits/is_abstract.hpp @@ -83,7 +83,7 @@ struct is_abstract_imp2 // GCC2 won't even parse this template if we embed the computation // of s1 in the computation of value. #ifdef __GNUC__ - BOOST_STATIC_CONSTANT(unsigned, s1 = sizeof(is_abstract_imp::template check_sig(0))); + BOOST_STATIC_CONSTANT(unsigned, s1 = sizeof(is_abstract_imp2::template check_sig(0))); #else BOOST_STATIC_CONSTANT(unsigned, s1 = sizeof(check_sig(0))); #endif