@@ -49,13 +49,13 @@ template <typename T, typename... As> constexpr auto pop_front_and_push_front(T
4949
5050// match any term
5151struct anything {
52- constexpr inline anything () noexcept { };
52+ constexpr inline anything () noexcept { }
5353 template <auto V> constexpr anything (term<V>) noexcept ;
5454};
5555
5656// match range of term A-B
5757template <auto A, decltype (A) B> struct range {
58- constexpr inline range () noexcept { };
58+ constexpr inline range () noexcept { }
5959 // template <auto V> constexpr range(term<V>) noexcept requires (A <= V) && (V <= B);
6060 template <auto V, typename = std::enable_if_t <(A <= V) && (V <= B)>> constexpr inline range (term<V>) noexcept ;
6161};
@@ -68,7 +68,7 @@ template <auto V, auto... Set> struct contains {
6868
6969// match terms defined in set
7070template <auto ... Def> struct set {
71- constexpr inline set () noexcept { };
71+ constexpr inline set () noexcept { }
7272 #ifdef __EDG__
7373 template <auto V, typename = std::enable_if_t <contains<V, Def...>::value>> constexpr inline set (term<V>) noexcept ;
7474 #else
@@ -78,7 +78,7 @@ template <auto... Def> struct set {
7878
7979// match terms not defined in set
8080template <auto ... Def> struct neg_set {
81- constexpr inline neg_set () noexcept { };
81+ constexpr inline neg_set () noexcept { }
8282
8383 #ifdef __EDG__
8484 template <auto V, typename = std::enable_if_t <!contains<V, Def...>::value>> constexpr inline neg_set (term<V>) noexcept ;
0 commit comments