Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/rapidjson/reader.h')
-rw-r--r--include/rapidjson/reader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rapidjson/reader.h b/include/rapidjson/reader.h
index c03a4ce5..77c9528b 100644
--- a/include/rapidjson/reader.h
+++ b/include/rapidjson/reader.h
@@ -941,9 +941,9 @@ private:
if (useDouble) {
int p = exp + expFrac;
if (parseFlags & kParseFullPrecisionFlag)
- d = internal::FullPrecision(d, p, decimal, length, decimalPosition, exp);
+ d = internal::StrtodFullPrecision(d, p, decimal, length, decimalPosition, exp);
else
- d = internal::NormalPrecision(d, p);
+ d = internal::StrtodNormalPrecision(d, p);
cont = handler.Double(minus ? -d : d);
}