public inbox for libstdc++-cvs@sourceware.org help / color / mirror / Atom feed
From: Joseph Myers <jsm28@gcc.gnu.org> To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r13-3767] libstdc++: Fix syntax error in old-glibc case in floating_from_chars.cc [PR107562] Date: Tue, 8 Nov 2022 01:41:35 +0000 (GMT) [thread overview] Message-ID: <20221108014135.DB9373858C53@sourceware.org> (raw) 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);
reply other threads:[~2022-11-08 1:41 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20221108014135.DB9373858C53@sourceware.org \ --to=jsm28@gcc.gnu.org \ --cc=gcc-cvs@gcc.gnu.org \ --cc=libstdc++-cvs@gcc.gnu.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
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).