aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2019-02-03 14:08:30 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2019-02-03 14:08:30 +0000
commit2c69098650c4f07a0d5413f5e42b9c9d1edcda09 (patch)
tree7e575755c19aea74b2771112e3d99c55dc05b912
parent07599ccf0c97fd013b07981363eb7db2d6f6d13f (diff)
downloadclang-tools-extra-2c69098650c4f07a0d5413f5e42b9c9d1edcda09.tar.gz
Remove trailing semicolon. NFCI.
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@352990 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--clangd/ClangdLSPServer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clangd/ClangdLSPServer.cpp b/clangd/ClangdLSPServer.cpp
index 893d85ab..981c69df 100644
--- a/clangd/ClangdLSPServer.cpp
+++ b/clangd/ClangdLSPServer.cpp
@@ -53,7 +53,7 @@ CodeAction toCodeAction(const ClangdServer::TweakRef &T, const URIForFile &File,
CA.command->tweakArgs->tweakID = T.ID;
CA.command->tweakArgs->selection = Selection;
return CA;
-};
+}
void adjustSymbolKinds(llvm::MutableArrayRef<DocumentSymbol> Syms,
SymbolKindBitset Kinds) {