We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f073483 commit 0a29cebCopy full SHA for 0a29ceb
src/tools/disco/Real.hpp
@@ -54,7 +54,8 @@ class Real : public BaseFixedWidthField< Width > {
54
// we are using fast_float::from_chars instead of std::from_chars since
55
// not all standard c++ libraries implement the floating point version of
56
// std::from_chars
57
- auto result = fast_float::from_chars( &*iter, &*end, value );
+ fast_float::parse_options options{ fast_float::chars_format::fortran };
58
+ auto result = fast_float::from_chars_advanced( &*iter, &*end, value, options );
59
if ( result.ec == std::errc() ) {
60
61
auto advance = result.ptr - &*iter;
0 commit comments