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

🚨 fix warnings

This commit is contained in:
Niels Lohmann
2020-07-20 22:38:00 +02:00
parent 4a5277d09d
commit a9117828e1
5 changed files with 34 additions and 32 deletions

View File

@ -7507,7 +7507,7 @@ class basic_json
const bool allow_exceptions = true,
const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error)
{
return from_cbor(ptr, ptr + len, strict, tag_handler);
return from_cbor(ptr, ptr + len, strict, allow_exceptions, tag_handler);
}