[clang-tools-extra] r344384 - [clangd] NFC fix semicolon warning

Jonas Toth via cfe-commits cfe-commits at lists.llvm.org
Fri Oct 12 10:47:44 PDT 2018


Author: jonastoth
Date: Fri Oct 12 10:47:43 2018
New Revision: 344384

URL: http://llvm.org/viewvc/llvm-project?rev=344384&view=rev
Log:
[clangd] NFC fix semicolon warning

Modified:
    clang-tools-extra/trunk/clangd/index/IndexAction.cpp

Modified: clang-tools-extra/trunk/clangd/index/IndexAction.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/index/IndexAction.cpp?rev=344384&r1=344383&r2=344384&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/index/IndexAction.cpp (original)
+++ clang-tools-extra/trunk/clangd/index/IndexAction.cpp Fri Oct 12 10:47:43 2018
@@ -74,7 +74,7 @@ createStaticIndexingAction(SymbolCollect
   return llvm::make_unique<IndexAction>(
       std::make_shared<SymbolCollector>(std::move(Opts)), std::move(Includes),
       IndexOpts, SymbolsCallback, RefsCallback);
-};
+}
 
 } // namespace clangd
 } // namespace clang




More information about the cfe-commits mailing list