1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-27 00:41:05 +03:00

improved coverage

This commit is contained in:
Niels Lohmann
2017-06-20 22:03:36 +02:00
parent a5c27ede32
commit 2f007ca092
3 changed files with 16 additions and 2 deletions

View File

@ -9986,7 +9986,7 @@ class basic_json
}
else
{
vec[i] = static_cast<uint8_t>(current);
vec[i] = static_cast<uint8_t>(current); // LCOV_EXCL_LINE
}
}
@ -10744,7 +10744,7 @@ class basic_json
}
else
{
oa->write_character(vec[i]);
oa->write_character(vec[i]); // LCOV_EXCL_LINE
}
}
}