Skip to content

Commit 340075a

Browse files
committed
Fixed formatting error
1 parent d2c2ef6 commit 340075a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/clangd/Selection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@ pointBounds(unsigned Offset, const syntax::TokenBuffer &Tokens) {
10461046
if (shouldIgnore(Tok))
10471047
continue;
10481048
unsigned Offset = Tokens.sourceManager().getFileOffset(Tok.location());
1049-
if (Tok.kind() == tok::comma){
1049+
if (Tok.kind() == tok::comma) {
10501050
ResultLowPrio.emplace_back(Offset, Offset + Tok.length());
10511051
} else {
10521052
Result.emplace_back(Offset, Offset + Tok.length());

0 commit comments

Comments
 (0)