mirror of
https://github.com/nlohmann/json.git
synced 2026-06-23 04:34:17 +00:00
⚗️ add -WX flag to MSVC builds
This commit is contained in:
@@ -100,6 +100,9 @@ struct my_allocator : std::allocator<T>
|
||||
std::allocator<T>::deallocate(p, n);
|
||||
}
|
||||
|
||||
// the code below warns about p in MSVC 2015 - this could be a bug
|
||||
DOCTEST_MSVC_SUPPRESS_WARNING_PUSH
|
||||
DOCTEST_MSVC_SUPPRESS_WARNING(4100)
|
||||
void destroy(T* p)
|
||||
{
|
||||
if (next_destroy_fails)
|
||||
@@ -110,6 +113,7 @@ struct my_allocator : std::allocator<T>
|
||||
|
||||
p->~T();
|
||||
}
|
||||
DOCTEST_MSVC_SUPPRESS_WARNING_POP
|
||||
|
||||
template <class U>
|
||||
struct rebind
|
||||
|
||||
Reference in New Issue
Block a user