JSONCPP_ISTRINGSTREAM

This commit is contained in:
Christopher Dunn 2016-03-06 11:52:00 -06:00
parent 38bb491400
commit 1e990640a9

View File

@ -617,7 +617,7 @@ bool Reader::decodeDouble(Token& token) {
bool Reader::decodeDouble(Token& token, Value& decoded) {
double value = 0;
std::string buffer(token.start_, token.end_);
std::istringstream is(buffer);
JSONCPP_ISTRINGSTREAM is(buffer);
if (!(is >> value))
return addError("'" + std::string(token.start_, token.end_) +
"' is not a number.",