1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

🚨 fixed PVS V567 warning

"V567 The modification of the 'position.chars_read_current_line' variable is unsequenced relative to another operation on the same variable. This may lead to undefined behavior."
This commit is contained in:
Niels Lohmann
2018-12-30 23:00:15 +01:00
parent 6f89613acd
commit c682b9879b
2 changed files with 2 additions and 2 deletions

View File

@ -3829,7 +3829,7 @@ scan_number_done:
if (current == '\n')
{
++position.lines_read;
++position.chars_read_current_line = 0;
position.chars_read_current_line = 0;
}
return current;