From 3756b7271310f2d399c9e19bb68f6c670f311ed8 Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Sat, 30 Oct 2004 08:27:47 +0000 Subject: [PATCH] check for STLPORT instead of specific compiler [SVN r25965] --- test/for_each.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/for_each.cpp b/test/for_each.cpp index 17d0a04..82091c1 100644 --- a/test/for_each.cpp +++ b/test/for_each.cpp @@ -63,7 +63,7 @@ int main() typedef mpl::range_c numbers; std::vector v; -#if BOOST_WORKAROUND(__BORLANDC__, >= 0x561) +#if defined(__SGI_STL_PORT) void (std::vector::* push_back)(int const&) = &std::vector::push_back; mpl::for_each( boost::bind(push_back, &v, _1)