⚗️ add C++20 build

This commit is contained in:
Niels Lohmann
2020-12-29 20:45:56 +01:00
parent 77be4f6aaf
commit e4fc598466
2 changed files with 1 additions and 21 deletions

View File

@@ -495,7 +495,7 @@ TEST_CASE("regression tests 2")
const char DATA[] = R"("Hello, world!")";
const auto s = std::as_bytes(std::span(DATA));
json j = json::parse(s);
CHECK(j.dump == "Hello, world!");
CHECK(j.dump() == "Hello, world!");
}
#endif
}