We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88baf98 commit b25ee52Copy full SHA for b25ee52
src/node_options-inl.h
@@ -387,12 +387,12 @@ void OptionsParser<Options>::Parse(
387
implied_name.insert(2, "no-");
388
}
389
auto implications = implications_.equal_range(implied_name);
390
- for (auto it = implications.first; it != implications.second; ++it) {
391
- if (it->second.type == kV8Option) {
392
- v8_args->push_back(it->second.name);
+ for (auto imp = implications.first; imp != implications.second; ++imp) {
+ if (imp->second.type == kV8Option) {
+ v8_args->push_back(imp->second.name);
393
} else {
394
- *it->second.target_field->template Lookup<bool>(options) =
395
- it->second.target_value;
+ *imp->second.target_field->template Lookup<bool>(options) =
+ imp->second.target_value;
396
397
398
0 commit comments