diff options
-rw-r--r-- | svl/source/numbers/zforfind.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/numbers/zforfind.cxx b/svl/source/numbers/zforfind.cxx index 4eee2ad9b14f..9ba2f650d607 100644 --- a/svl/source/numbers/zforfind.cxx +++ b/svl/source/numbers/zforfind.cxx @@ -177,7 +177,7 @@ double ImpSvNumberInputScan::StringToDouble( std::u16string_view aStr, bool bFor double result = 0; (void)fast_float::from_chars( - buf, p, result, fast_float::chars_format::general | fast_float::chars_format::no_infnan); + buf, p, result, fast_float::chars_format::fixed | fast_float::chars_format::no_infnan); return result; } |