forked from boostorg/unordered
Unordered: Some C++11 allocator_traits fixes.
Can now be used with g++ 4.7. Not activating by default yet. [SVN r76893]
This commit is contained in:
@@ -202,7 +202,8 @@ namespace boost { namespace unordered { namespace detail {
|
||||
template <typename Alloc, typename T>
|
||||
struct rebind_wrap
|
||||
{
|
||||
typedef typename std::allocator_traits<Alloc>::rebind_alloc<T> type;
|
||||
typedef typename std::allocator_traits<Alloc>::
|
||||
template rebind_alloc<T> type;
|
||||
};
|
||||
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user