🚧 further UBJSON

This commit is contained in:
Niels Lohmann 2018-01-08 18:54:17 +01:00
parent c9938ea838
commit 126ce2e56c
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
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);