File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -387,12 +387,12 @@ void OptionsParser<Options>::Parse(
387
387
implied_name.insert (2 , " no-" );
388
388
}
389
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 );
390
+ for (auto imp = implications.first ; imp != implications.second ; ++imp ) {
391
+ if (imp ->second .type == kV8Option ) {
392
+ v8_args->push_back (imp ->second .name );
393
393
} else {
394
- *it ->second .target_field ->template Lookup <bool >(options) =
395
- it ->second .target_value ;
394
+ *imp ->second .target_field ->template Lookup <bool >(options) =
395
+ imp ->second .target_value ;
396
396
}
397
397
}
398
398
}
You can’t perform that action at this time.
0 commit comments