[clang-tools-extra] r363681 - [clangd] Remove the extra ";", NFC

Haojian Wu via cfe-commits cfe-commits at lists.llvm.org
Tue Jun 18 06:52:00 PDT 2019


Author: hokein
Date: Tue Jun 18 06:52:00 2019
New Revision: 363681

URL: http://llvm.org/viewvc/llvm-project?rev=363681&view=rev
Log:
[clangd] Remove the extra ";", NFC

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

Modified: clang-tools-extra/trunk/clangd/refactor/tweaks/DumpAST.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/refactor/tweaks/DumpAST.cpp?rev=363681&r1=363680&r2=363681&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/refactor/tweaks/DumpAST.cpp (original)
+++ clang-tools-extra/trunk/clangd/refactor/tweaks/DumpAST.cpp Tue Jun 18 06:52:00 2019
@@ -94,7 +94,7 @@ public:
   Intent intent() const override { return Info; }
   bool hidden() const override { return true; }
 };
-REGISTER_TWEAK(ShowSelectionTree);
+REGISTER_TWEAK(ShowSelectionTree)
 
 /// Shows the layout of the RecordDecl under the cursor.
 /// Input:
@@ -132,7 +132,7 @@ public:
 private:
   const RecordDecl *Record = nullptr;
 };
-REGISTER_TWEAK(DumpRecordLayout);
+REGISTER_TWEAK(DumpRecordLayout)
 
 } // namespace
 } // namespace clangd




More information about the cfe-commits mailing list