add tests for binary type

This commit is contained in:
Niels Lohmann 2020-05-09 23:18:12 +02:00
parent 34430994bf
commit fff46ea98c
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
3 changed files with 24 additions and 2 deletions

View file

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