diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2022-12-08 11:55:31 +0000 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2022-12-09 00:33:58 +0000 |
commit | d61c0357ebc771166d5d48743f80aa339b4183dc (patch) | |
tree | 37ae34db0e8d3e893b6679ecf031bb7b62ca5db1 | |
parent | f76d7943bb310f8ffaa553badb9c8244d6f5beee (diff) | |
download | gcc-d61c0357ebc771166d5d48743f80aa339b4183dc.zip gcc-d61c0357ebc771166d5d48743f80aa339b4183dc.tar.gz gcc-d61c0357ebc771166d5d48743f80aa339b4183dc.tar.bz2 |
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.
-rw-r--r-- | libstdc++-v3/include/std/chrono | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/std/chrono b/libstdc++-v3/include/std/chrono index 8d73d98..38ecd31 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>> { |