We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2c2ef6 commit 340075aCopy full SHA for 340075a
clang-tools-extra/clangd/Selection.cpp
@@ -1046,7 +1046,7 @@ pointBounds(unsigned Offset, const syntax::TokenBuffer &Tokens) {
1046
if (shouldIgnore(Tok))
1047
continue;
1048
unsigned Offset = Tokens.sourceManager().getFileOffset(Tok.location());
1049
- if (Tok.kind() == tok::comma){
+ if (Tok.kind() == tok::comma) {
1050
ResultLowPrio.emplace_back(Offset, Offset + Tok.length());
1051
} else {
1052
Result.emplace_back(Offset, Offset + Tok.length());
0 commit comments