🚨 fix UBSAN warnings

This commit is contained in:
Niels Lohmann 2019-11-03 13:48:25 +01:00
parent 0db1692f45
commit dfe53c36da
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
4 changed files with 30 additions and 25 deletions

View file

@ -1580,7 +1580,7 @@ TEST_CASE("single CBOR roundtrip")
{
SECTION("std::ostringstream")
{
std::ostringstream ss;
std::basic_ostringstream<std::uint8_t> ss;
json::to_cbor(j1, ss);
json j3 = json::from_cbor(ss.str());
CHECK(j1 == j3);