1
0
mirror of https://github.com/nlohmann/json.git synced 2025-08-15 02:01:33 +03:00

🚨 fix MSVC warning #1502

This commit is contained in:
Niels Lohmann
2019-03-11 15:33:23 +01:00
parent cabe2357b8
commit 3cd1dac653
3 changed files with 22 additions and 21 deletions

View File

@@ -112,7 +112,8 @@ struct my_allocator : std::allocator<T>
}
template <class U>
struct rebind {
struct rebind
{
using other = my_allocator<U>;
};
};