mirror of
https://github.com/nlohmann/json.git
synced 2025-08-13 14:42:28 +03:00
still fixing
This commit is contained in:
@@ -240,9 +240,14 @@ namespace
|
||||
template<class 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 {
|
||||
typedef allocator_no_forward<U> other;
|
||||
using other = allocator_no_forward<U>;
|
||||
};
|
||||
|
||||
template <class... Args>
|
||||
|
Reference in New Issue
Block a user