mirror of
https://github.com/nlohmann/json
synced 2025-01-05 23:21:06 +00:00
fix for MSVC
This commit is contained in:
parent
01386b3977
commit
c9e5d56c9c
@ -749,7 +749,7 @@ TEST_CASE("parser class")
|
||||
{
|
||||
SECTION("from std::vector")
|
||||
{
|
||||
std::vector<uint8_t> v = {'t', 'r', 'u', 'e'};
|
||||
std::vector<uint8_t> v = {'t', 'r', 'u', 'e', '\0'};
|
||||
CHECK (json::parser(std::begin(v), std::end(v)).parse() == json(true));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user