Merge branch 'develop' into feature/iterator_range_parsing
This commit is contained in:
commit
f76f9efe58
4 changed files with 8 additions and 4 deletions
|
@ -2212,7 +2212,8 @@ class basic_json
|
|||
{
|
||||
std::stringstream ss;
|
||||
// fix locale problems
|
||||
ss.imbue(std::locale(std::locale(), new DecimalSeparator));
|
||||
const static std::locale loc(std::locale(), new DecimalSeparator);
|
||||
ss.imbue(loc);
|
||||
|
||||
// 6, 15 or 16 digits of precision allows round-trip IEEE 754
|
||||
// string->float->string, string->double->string or string->long
|
||||
|
|
|
@ -2212,7 +2212,8 @@ class basic_json
|
|||
{
|
||||
std::stringstream ss;
|
||||
// fix locale problems
|
||||
ss.imbue(std::locale(std::locale(), new DecimalSeparator));
|
||||
const static std::locale loc(std::locale(), new DecimalSeparator);
|
||||
ss.imbue(loc);
|
||||
|
||||
// 6, 15 or 16 digits of precision allows round-trip IEEE 754
|
||||
// string->float->string, string->double->string or string->long
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue