still fixing

parent 4ce31695
...@@ -240,9 +240,14 @@ namespace ...@@ -240,9 +240,14 @@ namespace
template<class T> template<class T>
struct allocator_no_forward : std::allocator<T> struct allocator_no_forward : std::allocator<T>
{ {
template <typename U> using std::allocator<T>::allocator;
template <class U>
allocator_no_forward(allocator_no_forward<U>) {}
template <class U>
struct rebind { struct rebind {
typedef allocator_no_forward<U> other; using other = allocator_no_forward<U>;
}; };
template <class... Args> template <class... Args>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment