Skip to content

Commit

Permalink
Should fix #307
Browse files Browse the repository at this point in the history
  • Loading branch information
hanickadot committed Jun 3, 2024
1 parent eb9577a commit acb2f4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/ctre/wrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ template <typename RE, typename Method, typename Modifier> struct regular_expres
return multi_subject_range<Range, regular_expression>{std::forward<Range>(range)};
}
constexpr CTRE_FORCE_INLINE static auto exec() noexcept {
return Method::template exec();
return Method::exec();
}
template <typename IteratorBegin, typename IteratorEnd> constexpr CTRE_FORCE_INLINE static auto exec(IteratorBegin begin, IteratorEnd end) noexcept {
return Method::template exec<Modifier>(begin, end, RE{});
Expand Down
2 changes: 1 addition & 1 deletion single-header/ctre-unicode.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5602,7 +5602,7 @@ template <typename RE, typename Method, typename Modifier> struct regular_expres
return multi_subject_range<Range, regular_expression>{std::forward<Range>(range)};
}
constexpr CTRE_FORCE_INLINE static auto exec() noexcept {
return Method::template exec();
return Method::exec();
}
template <typename IteratorBegin, typename IteratorEnd> constexpr CTRE_FORCE_INLINE static auto exec(IteratorBegin begin, IteratorEnd end) noexcept {
return Method::template exec<Modifier>(begin, end, RE{});
Expand Down
2 changes: 1 addition & 1 deletion single-header/ctre.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5599,7 +5599,7 @@ template <typename RE, typename Method, typename Modifier> struct regular_expres
return multi_subject_range<Range, regular_expression>{std::forward<Range>(range)};
}
constexpr CTRE_FORCE_INLINE static auto exec() noexcept {
return Method::template exec();
return Method::exec();
}
template <typename IteratorBegin, typename IteratorEnd> constexpr CTRE_FORCE_INLINE static auto exec(IteratorBegin begin, IteratorEnd end) noexcept {
return Method::template exec<Modifier>(begin, end, RE{});
Expand Down

0 comments on commit acb2f4d

Please sign in to comment.