Merge branch 'develop' of https://github.com/nlohmann/json into develop
This commit is contained in:
commit
b59a58406e
1 changed files with 3 additions and 5 deletions
|
@ -1346,13 +1346,11 @@ TEST_CASE("Big List of Naughty Strings")
|
|||
SECTION("roundtripping")
|
||||
{
|
||||
std::ifstream f("test/data/big-list-of-naughty-strings/blns.json");
|
||||
std::string line;
|
||||
|
||||
while (not f.eof())
|
||||
// read lines one by one, bail out on error or eof
|
||||
while (getline(f, line))
|
||||
{
|
||||
// read line
|
||||
std::string line;
|
||||
getline(f, line);
|
||||
|
||||
// trim whitespace
|
||||
line = trim(line);
|
||||
|
||||
|
|
Loading…
Reference in a new issue