mirror of
https://github.com/nlohmann/json.git
synced 2025-07-29 23:01:16 +03:00
possible fix
This commit is contained in:
961
src/json.hpp
961
src/json.hpp
File diff suppressed because it is too large
Load Diff
@ -2412,10 +2412,12 @@ class basic_json
|
||||
/// constructor for strings
|
||||
inline parser(const std::string& s) : buffer(s)
|
||||
{
|
||||
buffer += " ";
|
||||
|
||||
// set buffer for RE2C
|
||||
buffer_re2c = reinterpret_cast<const lexer_char_t*>(buffer.c_str());
|
||||
// set a pointer past the end of the buffer
|
||||
buffer_re2c_limit = buffer_re2c + buffer.size();
|
||||
buffer_re2c_limit = buffer_re2c + buffer.size() - 5;
|
||||
// read first token
|
||||
get_token();
|
||||
}
|
||||
@ -2430,10 +2432,12 @@ class basic_json
|
||||
buffer += input_line;
|
||||
}
|
||||
|
||||
buffer += " ";
|
||||
|
||||
// set buffer for RE2C
|
||||
buffer_re2c = reinterpret_cast<const lexer_char_t*>(buffer.c_str());
|
||||
// set a pointer past the end of the buffer
|
||||
buffer_re2c_limit = buffer_re2c + buffer.size();
|
||||
buffer_re2c_limit = buffer_re2c + buffer.size() - 5;
|
||||
// read first token
|
||||
get_token();
|
||||
}
|
||||
|
Reference in New Issue
Block a user