@@ -240,8 +240,8 @@ template<typename Iter> class match_group {
240
240
public: Iter end {};
241
241
242
242
public: bool matched {false };
243
- public: explicit match_group (auto const & start_, auto const & end_, auto const & matched_);
244
- public: explicit match_group ();
243
+ public: match_group(auto const & start_, auto const & end_, auto const & matched_);
244
+ public: match_group();
245
245
246
246
#line 55 "regex.h2"
247
247
};
@@ -250,8 +250,8 @@ public: explicit match_group();
250
250
template <typename Iter> class match_return {
251
251
public: bool matched {false };
252
252
public: Iter pos {};
253
- public: explicit match_return (auto const & matched_, auto const & pos_);
254
- public: explicit match_return ();
253
+ public: match_return(auto const & matched_, auto const & pos_);
254
+ public: match_return();
255
255
256
256
#line 62 "regex.h2"
257
257
};
@@ -594,8 +594,8 @@ class parse_context_group_state {
594
594
#line 412 "regex.h2"
595
595
// Apply optimizations to the matcher list.
596
596
public: static auto post_process_list (token_vec& list) -> void;
597
- public: explicit parse_context_group_state (auto const & cur_match_list_, auto const & alternate_match_lists_, auto const & modifiers_);
598
- public: explicit parse_context_group_state ();
597
+ public: parse_context_group_state(auto const & cur_match_list_, auto const & alternate_match_lists_, auto const & modifiers_);
598
+ public: parse_context_group_state();
599
599
600
600
601
601
#line 426 "regex.h2"
@@ -623,8 +623,8 @@ class parse_context_branch_reset_state {
623
623
#line 458 "regex.h2"
624
624
// Initialize for a branch reset group.
625
625
public: auto set_active_reset (cpp2::impl::in<int > restart) & -> void;
626
- public: explicit parse_context_branch_reset_state (auto const & is_active_, auto const & cur_group_, auto const & max_group_, auto const & from_);
627
- public: explicit parse_context_branch_reset_state ();
626
+ public: parse_context_branch_reset_state(auto const & is_active_, auto const & cur_group_, auto const & max_group_, auto const & from_);
627
+ public: parse_context_branch_reset_state();
628
628
629
629
630
630
#line 465 "regex.h2"
@@ -788,8 +788,8 @@ class generation_function_context {
788
788
789
789
#line 864 "regex.h2"
790
790
public: auto remove_tabs (cpp2::impl::in<int > c) & -> void;
791
- public: explicit generation_function_context (auto const & code_, auto const & tabs_);
792
- public: explicit generation_function_context ();
791
+ public: generation_function_context(auto const & code_, auto const & tabs_);
792
+ public: generation_function_context();
793
793
794
794
795
795
#line 867 "regex.h2"
@@ -1527,13 +1527,13 @@ return cpp2::move(_ret) + ")";
1527
1527
}
1528
1528
1529
1529
template <typename Iter> match_group<Iter>::match_group(auto const & start_, auto const & end_, auto const & matched_)
1530
- : start{ start_ }
1531
- , end{ end_ }
1532
- , matched{ matched_ }{}
1530
+ : start{ start_ }
1531
+ , end{ end_ }
1532
+ , matched{ matched_ }{}
1533
1533
template <typename Iter> match_group<Iter>::match_group(){}
1534
1534
template <typename Iter> match_return<Iter>::match_return(auto const & matched_, auto const & pos_)
1535
- : matched{ matched_ }
1536
- , pos{ pos_ }{}
1535
+ : matched{ matched_ }
1536
+ , pos{ pos_ }{}
1537
1537
template <typename Iter> match_return<Iter>::match_return(){}
1538
1538
#line 30 "regex.h2"
1539
1539
// -----------------------------------------------------------------------
@@ -1931,9 +1931,9 @@ template<typename Func> [[nodiscard]] auto make_on_return(Func const& func) -> a
1931
1931
}
1932
1932
1933
1933
parse_context_group_state::parse_context_group_state (auto const & cur_match_list_, auto const & alternate_match_lists_, auto const & modifiers_)
1934
- : cur_match_list{ cur_match_list_ }
1935
- , alternate_match_lists{ alternate_match_lists_ }
1936
- , modifiers{ modifiers_ }{}
1934
+ : cur_match_list{ cur_match_list_ }
1935
+ , alternate_match_lists{ alternate_match_lists_ }
1936
+ , modifiers{ modifiers_ }{}
1937
1937
parse_context_group_state::parse_context_group_state (){}
1938
1938
1939
1939
#line 437 "regex.h2"
@@ -1967,10 +1967,10 @@ parse_context_group_state::parse_context_group_state(){}
1967
1967
}
1968
1968
1969
1969
parse_context_branch_reset_state::parse_context_branch_reset_state (auto const & is_active_, auto const & cur_group_, auto const & max_group_, auto const & from_)
1970
- : is_active{ is_active_ }
1971
- , cur_group{ cur_group_ }
1972
- , max_group{ max_group_ }
1973
- , from{ from_ }{}
1970
+ : is_active{ is_active_ }
1971
+ , cur_group{ cur_group_ }
1972
+ , max_group{ max_group_ }
1973
+ , from{ from_ }{}
1974
1974
parse_context_branch_reset_state::parse_context_branch_reset_state (){}
1975
1975
1976
1976
#line 485 "regex.h2"
@@ -2369,8 +2369,8 @@ parse_context_branch_reset_state::parse_context_branch_reset_state(){}
2369
2369
}
2370
2370
2371
2371
generation_function_context::generation_function_context (auto const & code_, auto const & tabs_)
2372
- : code{ code_ }
2373
- , tabs{ tabs_ }{}
2372
+ : code{ code_ }
2373
+ , tabs{ tabs_ }{}
2374
2374
generation_function_context::generation_function_context (){}
2375
2375
2376
2376
#line 882 "regex.h2"
0 commit comments