1
0
mirror of https://github.com/nlohmann/json synced 2024-11-10 06:20:06 +00:00

Attempt to satisfy Coveralls by adding a test for (unchanged) operator std::string

This commit is contained in:
garethsb-sony 2019-01-31 23:39:12 +00:00 committed by gbsylveg
parent c850e9d82d
commit 5da757bbb3

View File

@ -438,6 +438,7 @@ TEST_CASE("JSON pointers")
})
{
CHECK(json::json_pointer(ptr).to_string() == ptr);
CHECK(std::string(json::json_pointer(ptr)) == ptr);
}
}