Commit b1be1b45 by Niels

minor change

parent d31d1ca6
...@@ -1491,7 +1491,7 @@ class basic_json ...@@ -1491,7 +1491,7 @@ class basic_json
default: default:
{ {
if (c <= 0x1f) if (c >= 0 and c <= 0x1f)
{ {
// control characters (everything between 0x00 and 0x1f) // control characters (everything between 0x00 and 0x1f)
// -> create four-digit hex representation // -> create four-digit hex representation
......
...@@ -1491,7 +1491,7 @@ class basic_json ...@@ -1491,7 +1491,7 @@ class basic_json
default: default:
{ {
if (c <= 0x1f) if (c >= 0 and c <= 0x1f)
{ {
// control characters (everything between 0x00 and 0x1f) // control characters (everything between 0x00 and 0x1f)
// -> create four-digit hex representation // -> create four-digit hex representation
......
...@@ -1080,6 +1080,13 @@ TEST_CASE("object inspection") ...@@ -1080,6 +1080,13 @@ TEST_CASE("object inspection")
auto s = json(42.23).dump(); auto s = json(42.23).dump();
CHECK(s.find("42.23") != std::string::npos); CHECK(s.find("42.23") != std::string::npos);
} }
SECTION("dump and non-ASCII characters")
{
CHECK(json("ä").dump() == "\"ä\"");
CHECK(json("Ö").dump() == "\"Ö\"");
CHECK(json("❤️").dump() == "\"❤️\"");
}
} }
SECTION("return the type of the object (explicit)") SECTION("return the type of the object (explicit)")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment