Skip to content

Commit 2baeb3d

Browse files
committed
NFC: Wrap a line to 80 column limit
1 parent 25cfa13 commit 2baeb3d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

lib/Sema/TypeCheckDeclPrimary.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -777,10 +777,12 @@ DefaultArgumentInitContextRequest::evaluate(Evaluator &eval,
777777
// kicked off the request, make a note of it for when we return. Otherwise
778778
// cache the result ourselves.
779779
auto *initDC = new (ctx) DefaultArgumentInitializer(parentDC, idx);
780-
if (param == otherParam)
780+
if (param == otherParam) {
781781
result = initDC;
782-
else
783-
eval.cacheOutput(DefaultArgumentInitContextRequest{otherParam}, std::move(initDC));
782+
} else {
783+
eval.cacheOutput(DefaultArgumentInitContextRequest{otherParam},
784+
std::move(initDC));
785+
}
784786
}
785787
assert(result && "Didn't create init context?");
786788
return result;

0 commit comments

Comments
 (0)