Make internal func anon

fixes #489
This commit is contained in:
Christopher Dunn 2016-06-26 17:52:19 -05:00
parent 43203f1d09
commit e0f9aab0bf
2 changed files with 3 additions and 1 deletions

View File

@ -135,6 +135,7 @@ JSONCPP_STRING valueToString(UInt value) {
#endif // # if defined(JSON_HAS_INT64)
namespace {
JSONCPP_STRING valueToString(double value, bool useSpecialFloats, unsigned int precision) {
// Allocate a buffer that is more than large enough to store the 16 digits of
// precision requested below.
@ -164,6 +165,7 @@ JSONCPP_STRING valueToString(double value, bool useSpecialFloats, unsigned int p
fixNumericLocale(buffer, buffer + len);
return buffer;
}
}
JSONCPP_STRING valueToString(double value) { return valueToString(value, false, 17); }