From bb65395a8e6487da4c18e2815797a6b505d930ac Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Thu, 31 Oct 2002 08:32:10 +0000 Subject: [PATCH] reverted bogus GCC 3.2 changes [SVN r16028] --- test/for_each.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/for_each.cpp b/test/for_each.cpp index 16a8839..af53c53 100644 --- a/test/for_each.cpp +++ b/test/for_each.cpp @@ -23,6 +23,7 @@ #include #include +#include #include #include @@ -34,11 +35,7 @@ struct printer printer(std::ostream& s) : f_stream(&s) {} template< typename U > void operator()(mpl::identity) { -#if defined(__GNUC__) && (__GNUC__ >= 3 && !defined(BOOST_STRICT_CONFIG)) - *f_stream << reinterpret_cast(typeid(U).name()) << '\n'; -#else *f_stream << typeid(U).name() << '\n'; -#endif } private: