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

add tests for binary type

This commit is contained in:
Niels Lohmann
2020-05-09 23:18:12 +02:00
parent 34430994bf
commit fff46ea98c
3 changed files with 24 additions and 2 deletions

View File

@ -7738,7 +7738,7 @@ class binary_reader
{
success = false;
}
return static_cast<uint8_t>(current);
return static_cast<std::uint8_t>(current);
});
return success;
}