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

🚧 further UBJSON

This commit is contained in:
Niels Lohmann
2018-01-08 18:54:17 +01:00
parent c9938ea838
commit 126ce2e56c
2 changed files with 83 additions and 8 deletions

View File

@ -414,10 +414,8 @@ TEST_CASE("UBJSON")
SECTION("2147483648..9223372036854775807 (int64)")
{
for (uint64_t i :
{
2147483648ul, 9223372036854775807ul
})
std::vector<uint64_t> v = {2147483648ul, 9223372036854775807ul};
for (uint64_t i : v)
{
CAPTURE(i);
@ -605,10 +603,8 @@ TEST_CASE("UBJSON")
SECTION("2147483648..9223372036854775807 (int64)")
{
for (uint64_t i :
{
2147483648ul, 9223372036854775807ul
})
std::vector<uint64_t> v = {2147483648ul, 9223372036854775807ul};
for (uint64_t i : v)
{
CAPTURE(i);