⚗️ try to use GCC 10

This commit is contained in:
Niels Lohmann
2020-12-29 20:16:51 +01:00
parent 7b98df515f
commit 433da31334
8 changed files with 73 additions and 21 deletions

View File

@@ -400,7 +400,7 @@ TEST_CASE("regression tests 1")
SECTION("issue #146 - character following a surrogate pair is skipped")
{
CHECK(json::parse("\"\\ud80c\\udc60abc\"").get<json::string_t>() == u8"\U00013060abc");
CHECK(json::parse("\"\\ud80c\\udc60abc\"").get<json::string_t>() == "\U00013060abc");
}
SECTION("issue #171 - Cannot index by key of type static constexpr const char*")