File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -1732,11 +1732,9 @@ static void readConfigs(Ctx &ctx, opt::InputArgList &args) {
17321732 for (opt::Arg *arg : args.filtered (OPT_z)) {
17331733 std::pair<StringRef, StringRef> option =
17341734 StringRef (arg->getValue ()).split (' =' );
1735- ReportOptDesc *const desc =
1736- std::lower_bound (std::begin (reports), std::end (reports), option.first ,
1737- [](const ReportOptDesc &d, const StringRef &s) {
1738- return d.name < s;
1739- });
1735+ ReportOptDesc *const desc = std::lower_bound (
1736+ std::begin (reports), std::end (reports), option.first ,
1737+ [](const ReportOptDesc &d, const StringRef &s) { return d.name < s; });
17401738 if (desc == std::end (reports) || desc->name != option.first )
17411739 continue ;
17421740
You can’t perform that action at this time.
0 commit comments