1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

Fix -Wunused warnings on JSON_DIAGNOSTICS (#2976)

* Fix #2975

Define JSON_DIAGNOSTICS to 0 if not defined to fix annoying Wundef warnings.

* amalgamated
This commit is contained in:
Giovanni Cerretani
2021-08-26 07:35:01 +02:00
committed by GitHub
parent 1fd2213fd2
commit 28a169725e
2 changed files with 8 additions and 0 deletions

View File

@ -301,3 +301,7 @@
#else #else
#define JSON_EXPLICIT explicit #define JSON_EXPLICIT explicit
#endif #endif
#ifndef JSON_DIAGNOSTICS
#define JSON_DIAGNOSTICS 0
#endif

View File

@ -2514,6 +2514,10 @@ JSON_HEDLEY_DIAGNOSTIC_POP
#define JSON_EXPLICIT explicit #define JSON_EXPLICIT explicit
#endif #endif
#ifndef JSON_DIAGNOSTICS
#define JSON_DIAGNOSTICS 0
#endif
namespace nlohmann namespace nlohmann
{ {