@@ -28,8 +28,8 @@ EnvironmentOptions* PerIsolateOptions::get_per_env_options() {
28
28
namespace options_parser {
29
29
30
30
template <typename Options>
31
- void OptionsParser<Options>::AddOption(const std::string& name,
32
- const std::string& help_text,
31
+ void OptionsParser<Options>::AddOption(const char * name,
32
+ const char * help_text,
33
33
bool Options::* field,
34
34
OptionEnvvarSettings env_setting) {
35
35
options_.emplace (name,
@@ -40,8 +40,8 @@ void OptionsParser<Options>::AddOption(const std::string& name,
40
40
}
41
41
42
42
template <typename Options>
43
- void OptionsParser<Options>::AddOption(const std::string& name,
44
- const std::string& help_text,
43
+ void OptionsParser<Options>::AddOption(const char * name,
44
+ const char * help_text,
45
45
uint64_t Options::* field,
46
46
OptionEnvvarSettings env_setting) {
47
47
options_.emplace (
@@ -53,8 +53,8 @@ void OptionsParser<Options>::AddOption(const std::string& name,
53
53
}
54
54
55
55
template <typename Options>
56
- void OptionsParser<Options>::AddOption(const std::string& name,
57
- const std::string& help_text,
56
+ void OptionsParser<Options>::AddOption(const char * name,
57
+ const char * help_text,
58
58
int64_t Options::* field,
59
59
OptionEnvvarSettings env_setting) {
60
60
options_.emplace (
@@ -66,8 +66,8 @@ void OptionsParser<Options>::AddOption(const std::string& name,
66
66
}
67
67
68
68
template <typename Options>
69
- void OptionsParser<Options>::AddOption(const std::string& name,
70
- const std::string& help_text,
69
+ void OptionsParser<Options>::AddOption(const char * name,
70
+ const char * help_text,
71
71
std::string Options::* field,
72
72
OptionEnvvarSettings env_setting) {
73
73
options_.emplace (
@@ -80,8 +80,8 @@ void OptionsParser<Options>::AddOption(const std::string& name,
80
80
81
81
template <typename Options>
82
82
void OptionsParser<Options>::AddOption(
83
- const std::string& name,
84
- const std::string& help_text,
83
+ const char * name,
84
+ const char * help_text,
85
85
std::vector<std::string> Options::* field,
86
86
OptionEnvvarSettings env_setting) {
87
87
options_.emplace (name, OptionInfo {
@@ -93,8 +93,8 @@ void OptionsParser<Options>::AddOption(
93
93
}
94
94
95
95
template <typename Options>
96
- void OptionsParser<Options>::AddOption(const std::string& name,
97
- const std::string& help_text,
96
+ void OptionsParser<Options>::AddOption(const char * name,
97
+ const char * help_text,
98
98
HostPort Options::* field,
99
99
OptionEnvvarSettings env_setting) {
100
100
options_.emplace (
@@ -106,44 +106,44 @@ void OptionsParser<Options>::AddOption(const std::string& name,
106
106
}
107
107
108
108
template <typename Options>
109
- void OptionsParser<Options>::AddOption(const std::string& name,
110
- const std::string& help_text,
109
+ void OptionsParser<Options>::AddOption(const char * name,
110
+ const char * help_text,
111
111
NoOp no_op_tag,
112
112
OptionEnvvarSettings env_setting) {
113
113
options_.emplace (name, OptionInfo{kNoOp , nullptr , env_setting, help_text});
114
114
}
115
115
116
116
template <typename Options>
117
- void OptionsParser<Options>::AddOption(const std::string& name,
118
- const std::string& help_text,
117
+ void OptionsParser<Options>::AddOption(const char * name,
118
+ const char * help_text,
119
119
V8Option v8_option_tag,
120
120
OptionEnvvarSettings env_setting) {
121
121
options_.emplace (name,
122
122
OptionInfo{kV8Option , nullptr , env_setting, help_text});
123
123
}
124
124
125
125
template <typename Options>
126
- void OptionsParser<Options>::AddAlias(const std::string& from,
127
- const std::string& to) {
126
+ void OptionsParser<Options>::AddAlias(const char * from,
127
+ const char * to) {
128
128
aliases_[from] = { to };
129
129
}
130
130
131
131
template <typename Options>
132
- void OptionsParser<Options>::AddAlias(const std::string& from,
132
+ void OptionsParser<Options>::AddAlias(const char * from,
133
133
const std::vector<std::string>& to) {
134
134
aliases_[from] = to;
135
135
}
136
136
137
137
template <typename Options>
138
138
void OptionsParser<Options>::AddAlias(
139
- const std::string& from,
139
+ const char * from,
140
140
const std::initializer_list<std::string>& to) {
141
141
AddAlias (from, std::vector<std::string>(to));
142
142
}
143
143
144
144
template <typename Options>
145
- void OptionsParser<Options>::Implies(const std::string& from,
146
- const std::string& to) {
145
+ void OptionsParser<Options>::Implies(const char * from,
146
+ const char * to) {
147
147
auto it = options_.find (to);
148
148
CHECK_NE (it, options_.end ());
149
149
CHECK_EQ (it->second .type , kBoolean );
@@ -153,8 +153,8 @@ void OptionsParser<Options>::Implies(const std::string& from,
153
153
}
154
154
155
155
template <typename Options>
156
- void OptionsParser<Options>::ImpliesNot(const std::string& from,
157
- const std::string& to) {
156
+ void OptionsParser<Options>::ImpliesNot(const char * from,
157
+ const char * to) {
158
158
auto it = options_.find (to);
159
159
CHECK_NE (it, options_.end ());
160
160
CHECK_EQ (it->second .type , kBoolean );
0 commit comments