check for STLPORT instead of specific compiler

[SVN r25965]
This commit is contained in:
Aleksey Gurtovoy
2004-10-30 08:27:47 +00:00
parent ab0da77c2e
commit 3756b72713

View File

@@ -63,7 +63,7 @@ int main()
typedef mpl::range_c<int,0,10> numbers;
std::vector<int> v;
#if BOOST_WORKAROUND(__BORLANDC__, >= 0x561)
#if defined(__SGI_STL_PORT)
void (std::vector<int>::* push_back)(int const&) = &std::vector<int>::push_back;
mpl::for_each<numbers>(
boost::bind(push_back, &v, _1)