Unordered: Use C++11 allocator_traits with gcc 4.7.

[SVN r76970]
This commit is contained in:
Daniel James
2012-02-11 12:33:25 +00:00
parent 2aee3add16
commit 08230efb44
2 changed files with 9 additions and 2 deletions

View File

@@ -132,7 +132,7 @@ void test_allocator1()
BOOST_MPL_ASSERT((boost::is_same<typename traits::size_type,
std::make_unsigned<std::ptrdiff_t>::type>));
#else
BOOST_MPL_ASSERT((boost::is_same<traits::size_type, std::size_t>));
BOOST_MPL_ASSERT((boost::is_same<typename traits::size_type, std::size_t>));
#endif
BOOST_MPL_ASSERT((boost::is_same<traits::difference_type, std::ptrdiff_t>));
BOOST_MPL_ASSERT((boost::is_same<traits::pointer, int*>));