Fixes for MSVC 6.0.

[SVN r45085]
This commit is contained in:
Peter Dimov
2008-05-03 19:29:01 +00:00
parent da323af72d
commit 83c43617af
6 changed files with 209 additions and 148 deletions

View File

@@ -49,6 +49,9 @@ int main()
BOOST_TEST( q != 0 && q->data == 17041 );
}
#if defined( BOOST_MSVC ) && BOOST_WORKAROUND( BOOST_MSVC, < 1300 )
#else
{
boost::shared_ptr<X> p( &x, deleter(), std::allocator<X>() );
@@ -58,5 +61,7 @@ int main()
BOOST_TEST( q != 0 && q->data == 17041 );
}
#endif
return boost::report_errors();
}