1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-29 23:01:16 +03:00

🚨 fixed warning #1364

This commit is contained in:
Niels Lohmann
2018-11-21 21:17:38 +01:00
parent da81e7be22
commit ef90d62ddf
2 changed files with 2 additions and 2 deletions

View File

@ -241,7 +241,7 @@ class binary_reader
case 0x08: // boolean case 0x08: // boolean
{ {
return sax->boolean(static_cast<bool>(get())); return sax->boolean(get() != 0);
} }
case 0x0A: // null case 0x0A: // null

View File

@ -6582,7 +6582,7 @@ class binary_reader
case 0x08: // boolean case 0x08: // boolean
{ {
return sax->boolean(static_cast<bool>(get())); return sax->boolean(get() != 0);
} }
case 0x0A: // null case 0x0A: // null