Unordered: Remove unnecessary typename.

[SVN r76906]
This commit is contained in:
Daniel James
2012-02-05 23:21:45 +00:00
parent 992cc0b077
commit f6b8d3957d

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<typename traits::size_type, std::size_t>));
BOOST_MPL_ASSERT((boost::is_same<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*>));