🔨 fixed a warning

parent afb959a0
......@@ -8863,7 +8863,7 @@ class basic_json
// may not have processed all of them. Therefore, we need to
// "rewind" the stream after the last processed char.
is.seekg(start_position);
is.ignore(processed_chars);
is.ignore(static_cast<std::streamsize>(processed_chars));
// clear stream flags
is.clear();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment