mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-21 08:30:35 +08:00
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.
This commit is contained in:
parent
f76d7943bb
commit
d61c0357eb
@ -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>>
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user