]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Check static assertions earlier in chrono::duration
authorJonathan Wakely <jwakely@redhat.com>
Mon, 21 Nov 2022 11:52:34 +0000 (11:52 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Thu, 24 Nov 2022 13:47:29 +0000 (13:47 +0000)
This ensures that we fail a static assertion before giving any other
errors. Instantiating chrono::duration<int, chrono::seconds> will now
print this before the other errors caused by it:

error: static assertion failed: period must be a specialization of ratio

libstdc++-v3/ChangeLog:

* include/bits/chrono.h (duration): Check preconditions on
template arguments before using them.

(cherry picked from commit ed77dcb9be76e592b62449c75a5e751485514afd)

libstdc++-v3/include/bits/chrono.h

index 421898516ae43b9cedac0f9b54014cf693fa3e1a..65e3e3183f7466bf4e1467ba3129b71e7261effa 100644 (file)
@@ -442,6 +442,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     template<typename _Rep, typename _Period>
       struct duration
       {
+       static_assert(!__is_duration<_Rep>::value, "rep cannot be a duration");
+       static_assert(__is_ratio<_Period>::value,
+                     "period must be a specialization of ratio");
+       static_assert(_Period::num > 0, "period must be positive");
+
       private:
        template<typename _Rep2>
          using __is_float = treat_as_floating_point<_Rep2>;
@@ -487,11 +492,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        using rep = _Rep;
        using period = typename _Period::type;
 
-       static_assert(!__is_duration<_Rep>::value, "rep cannot be a duration");
-       static_assert(__is_ratio<_Period>::value,
-                     "period must be a specialization of ratio");
-       static_assert(_Period::num > 0, "period must be positive");
-
        // 20.11.5.1 construction / copy / destroy
        constexpr duration() = default;