File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ template <typename... Content> struct negative_set {
5151};
5252
5353template <typename ... Content> struct set {
54- template <typename CharT> CTRE_FORCE_INLINE static constexpr bool match_char (C [[maybe_unused]] harT value, const flags & f) noexcept {
54+ template <typename CharT> CTRE_FORCE_INLINE static constexpr bool match_char ([[maybe_unused]] CharT value, const flags & f) noexcept {
5555 return (Content::match_char (value, f) || ... || false );
5656 }
5757};
Original file line number Diff line number Diff line change @@ -1609,7 +1609,7 @@ template <typename... Content> struct negative_set {
16091609};
16101610
16111611template <typename... Content> struct set {
1612- template <typename CharT> CTRE_FORCE_INLINE static constexpr bool match_char(C [[maybe_unused]] harT value, const flags & f) noexcept {
1612+ template <typename CharT> CTRE_FORCE_INLINE static constexpr bool match_char([[maybe_unused]] CharT value, const flags & f) noexcept {
16131613 return (Content::match_char(value, f) || ... || false);
16141614 }
16151615};
Original file line number Diff line number Diff line change @@ -1606,7 +1606,7 @@ template <typename... Content> struct negative_set {
16061606};
16071607
16081608template <typename ... Content> struct set {
1609- template <typename CharT> CTRE_FORCE_INLINE static constexpr bool match_char (C [[maybe_unused]] harT value, const flags & f) noexcept {
1609+ template <typename CharT> CTRE_FORCE_INLINE static constexpr bool match_char ([[maybe_unused]] CharT value, const flags & f) noexcept {
16101610 return (Content::match_char (value, f) || ... || false );
16111611 }
16121612};
You can’t perform that action at this time.
0 commit comments