public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: Jonathan Wakely <redi@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc r13-4574] libstdc++: Remove digit separators [PR108015]
Date: Fri,  9 Dec 2022 00:35:45 +0000 (GMT)	[thread overview]
Message-ID: <20221209003546.15E10389C018@sourceware.org> (raw)

https://gcc.gnu.org/g:d61c0357ebc771166d5d48743f80aa339b4183dc

commit r13-4574-gd61c0357ebc771166d5d48743f80aa339b4183dc
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Thu Dec 8 11:55:31 2022 +0000

    libstdc++: Remove digit separators [PR108015]
    
    These are not valid in C++11 and cause a warning when preprocessing,
    even though they're inside a skipped group.
    
    chrono:2436: warning: missing terminating ' character
    
    libstdc++-v3/ChangeLog:
    
            PR libstdc++/108015
            * include/std/chrono (hh_mm_ss): Remove digit separators.

Diff:
---
 libstdc++-v3/include/std/chrono | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libstdc++-v3/include/std/chrono b/libstdc++-v3/include/std/chrono
index 8d73d98e4cb..38ecd3142bc 100644
--- a/libstdc++-v3/include/std/chrono
+++ b/libstdc++-v3/include/std/chrono
@@ -2433,7 +2433,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 	template<typename _Rep, typename _Period>
 	  requires (!treat_as_floating_point_v<_Rep>)
 	    && ratio_less_v<_Period, ratio<1, 250>>
-	    && (ratio_greater_equal_v<_Period, ratio<1, 4'000'000'000>>
+	    && (ratio_greater_equal_v<_Period, ratio<1, 4000000000>>
 		  || __fits<uint_least32_t>)
 	  struct __subseconds<duration<_Rep, _Period>>
 	  {

                 reply	other threads:[~2022-12-09  0:35 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=20221209003546.15E10389C018@sourceware.org \
    --to=redi@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: link
Be 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).