🚨 fix UBSAN warnings

This commit is contained in:
Niels Lohmann
2019-11-03 13:48:25 +01:00
parent 0db1692f45
commit dfe53c36da
4 changed files with 30 additions and 25 deletions

View File

@@ -1334,7 +1334,7 @@ TEST_CASE("single MessagePack roundtrip")
{
SECTION("std::ostringstream")
{
std::ostringstream ss;
std::basic_ostringstream<std::uint8_t> ss;
json::to_msgpack(j1, ss);
json j3 = json::from_msgpack(ss.str());
CHECK(j1 == j3);