[clang-tools-extra] r352511 - [clangd] Remove extra '; ' to fix -Wpedantic warning. NFC

Ilya Biryukov via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 29 08:04:39 PST 2019


Author: ibiryukov
Date: Tue Jan 29 08:04:39 2019
New Revision: 352511

URL: http://llvm.org/viewvc/llvm-project?rev=352511&view=rev
Log:
[clangd] Remove extra ';' to fix -Wpedantic warning. NFC

Modified:
    clang-tools-extra/trunk/clangd/refactor/Tweak.cpp

Modified: clang-tools-extra/trunk/clangd/refactor/Tweak.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/refactor/Tweak.cpp?rev=352511&r1=352510&r2=352511&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/refactor/Tweak.cpp (original)
+++ clang-tools-extra/trunk/clangd/refactor/Tweak.cpp Tue Jan 29 08:04:39 2019
@@ -14,7 +14,7 @@
 #include <functional>
 #include <memory>
 
-LLVM_INSTANTIATE_REGISTRY(llvm::Registry<clang::clangd::Tweak>);
+LLVM_INSTANTIATE_REGISTRY(llvm::Registry<clang::clangd::Tweak>)
 
 namespace clang {
 namespace clangd {




More information about the cfe-commits mailing list