Skip to content

Commit 0dcdacd

Browse files
author
Galen Elias
committed
clang-format run
1 parent 6548c31 commit 0dcdacd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

clang/lib/Format/UnwrappedLineFormatter.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,8 +660,7 @@ class LineJoiner {
660660
return 0;
661661
// Check that the line after the inner result starts with a closing brace
662662
// which we are permitted to merge into one line.
663-
if (I[N]->First->is(tok::r_brace) &&
664-
!I[N]->First->MustBreakBefore &&
663+
if (I[N]->First->is(tok::r_brace) && !I[N]->First->MustBreakBefore &&
665664
!I[MergedLines + 1]->Last->is(tok::comment) &&
666665
nextNLinesFitInto(I, I + N + 1, Limit)) {
667666
return N;

0 commit comments

Comments
 (0)