Skip to content

Commit dc2a9f1

Browse files
committed
Update of generated header files.
1 parent e106333 commit dc2a9f1

File tree

2 files changed

+28
-28
lines changed

2 files changed

+28
-28
lines changed

include/cpp2regex.h

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@ template<typename Iter> class match_group {
240240
public: Iter end {};
241241

242242
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();
245245

246246
#line 55 "regex.h2"
247247
};
@@ -250,8 +250,8 @@ public: explicit match_group();
250250
template<typename Iter> class match_return {
251251
public: bool matched {false};
252252
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();
255255

256256
#line 62 "regex.h2"
257257
};
@@ -594,8 +594,8 @@ class parse_context_group_state {
594594
#line 412 "regex.h2"
595595
// Apply optimizations to the matcher list.
596596
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();
599599

600600

601601
#line 426 "regex.h2"
@@ -623,8 +623,8 @@ class parse_context_branch_reset_state {
623623
#line 458 "regex.h2"
624624
// Initialize for a branch reset group.
625625
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();
628628

629629

630630
#line 465 "regex.h2"
@@ -788,8 +788,8 @@ class generation_function_context {
788788

789789
#line 864 "regex.h2"
790790
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();
793793

794794

795795
#line 867 "regex.h2"
@@ -1527,13 +1527,13 @@ return cpp2::move(_ret) + ")";
15271527
}
15281528

15291529
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_ }{}
15331533
template <typename Iter> match_group<Iter>::match_group(){}
15341534
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_ }{}
15371537
template <typename Iter> match_return<Iter>::match_return(){}
15381538
#line 30 "regex.h2"
15391539
//-----------------------------------------------------------------------
@@ -1931,9 +1931,9 @@ template<typename Func> [[nodiscard]] auto make_on_return(Func const& func) -> a
19311931
}
19321932

19331933
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_ }{}
19371937
parse_context_group_state::parse_context_group_state(){}
19381938

19391939
#line 437 "regex.h2"
@@ -1967,10 +1967,10 @@ parse_context_group_state::parse_context_group_state(){}
19671967
}
19681968

19691969
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_ }{}
19741974
parse_context_branch_reset_state::parse_context_branch_reset_state(){}
19751975

19761976
#line 485 "regex.h2"
@@ -2369,8 +2369,8 @@ parse_context_branch_reset_state::parse_context_branch_reset_state(){}
23692369
}
23702370

23712371
generation_function_context::generation_function_context(auto const& code_, auto const& tabs_)
2372-
: code{ code_ }
2373-
, tabs{ tabs_ }{}
2372+
: code{ code_ }
2373+
, tabs{ tabs_ }{}
23742374
generation_function_context::generation_function_context(){}
23752375

23762376
#line 882 "regex.h2"

source/reflect.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ class value_member_info {
697697
public: std::string name;
698698
public: std::string type;
699699
public: std::string value;
700-
public: explicit value_member_info(auto const& name_, auto const& type_, auto const& value_);
700+
public: value_member_info(auto const& name_, auto const& type_, auto const& value_);
701701

702702
#line 999 "reflect.h2"
703703
};
@@ -1663,9 +1663,9 @@ auto cpp2_struct(meta::type_declaration& t) -> void
16631663
}
16641664

16651665
value_member_info::value_member_info(auto const& name_, auto const& type_, auto const& value_)
1666-
: name{ name_ }
1667-
, type{ type_ }
1668-
, value{ value_ }{}
1666+
: name{ name_ }
1667+
, type{ type_ }
1668+
, value{ value_ }{}
16691669

16701670
#line 1001 "reflect.h2"
16711671
auto basic_enum(

0 commit comments

Comments
 (0)