We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38bb491 commit 1e99064Copy full SHA for 1e99064
src/lib_json/json_reader.cpp
@@ -617,7 +617,7 @@ bool Reader::decodeDouble(Token& token) {
617
bool Reader::decodeDouble(Token& token, Value& decoded) {
618
double value = 0;
619
std::string buffer(token.start_, token.end_);
620
- std::istringstream is(buffer);
+ JSONCPP_ISTRINGSTREAM is(buffer);
621
if (!(is >> value))
622
return addError("'" + std::string(token.start_, token.end_) +
623
"' is not a number.",
0 commit comments