Skip to content

Commit c21ba68

Browse files
committed
fixup: Format code
1 parent 9df7800 commit c21ba68

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

lld/ELF/Driver.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)