On Tue, Nov 08, 2022 at 01:41:41AM +0000, Joseph Myers wrote: > I've committed this further fix for a syntax error as obvious.
Thanks and sorry. > libstdc++: Fix syntax error in old-glibc case in floating_from_chars.cc > [PR107562] > > PR libstdc++/107562 > * src/c++17/floating_from_chars.cc (from_chars_impl): Fix syntax > error. > > diff --git a/libstdc++-v3/src/c++17/floating_from_chars.cc > b/libstdc++-v3/src/c++17/floating_from_chars.cc > index 29eb4634e9d..be1e1051b5c 100644 > --- a/libstdc++-v3/src/c++17/floating_from_chars.cc > +++ b/libstdc++-v3/src/c++17/floating_from_chars.cc > @@ -632,7 +632,7 @@ namespace > { > #ifndef _GLIBCXX_HAVE_FLOAT128_MATH > if (&__strtof128 == nullptr) > - tmpval = _Float128(std::strtold(str, &endptr); > + tmpval = _Float128(std::strtold(str, &endptr)); > else > #endif > tmpval = __strtof128(str, &endptr); Jakub