public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-3767] libstdc++: Fix syntax error in old-glibc case in floating_from_chars.cc [PR107562]
@ 2022-11-08  1:41 Joseph Myers
  0 siblings, 0 replies; only message in thread
From: Joseph Myers @ 2022-11-08  1:41 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:8d0326943ee4eb87309faca28ee0ed13346dd70a

commit r13-3767-g8d0326943ee4eb87309faca28ee0ed13346dd70a
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Tue Nov 8 01:39:52 2022 +0000

    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:
---
 libstdc++-v3/src/c++17/floating_from_chars.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-11-08  1:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-08  1:41 [gcc r13-3767] libstdc++: Fix syntax error in old-glibc case in floating_from_chars.cc [PR107562] Joseph Myers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).