still fixing

This commit is contained in:
Artöm Bakri Al-Sarmini 2020-04-08 00:42:03 +03:00
parent 4ce31695f1
commit fec0bdd93b

View file

@ -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>