mirror of
https://github.com/nlohmann/json.git
synced 2026-04-18 14:08:52 +00:00
BSON: support objects with int64 members
This commit is contained in:
@@ -213,6 +213,16 @@ class binary_reader
|
||||
sax->number_integer(static_cast<std::int32_t>(value));
|
||||
}
|
||||
break;
|
||||
case 0x12: // int64
|
||||
{
|
||||
string_t key;
|
||||
get_bson_cstr(key);
|
||||
sax->key(key);
|
||||
std::int64_t value;
|
||||
get_number_little_endian(value);
|
||||
sax->number_integer(static_cast<std::int64_t>(value));
|
||||
}
|
||||
break;
|
||||
case 0x0A: // null
|
||||
{
|
||||
string_t key;
|
||||
|
||||
Reference in New Issue
Block a user