[clang-tools-extra] r350040 - [clangd] Delete stray semicolon. NFC

Fangrui Song via cfe-commits cfe-commits at lists.llvm.org
Sun Dec 23 19:19:53 PST 2018


Author: maskray
Date: Sun Dec 23 19:19:53 2018
New Revision: 350040

URL: http://llvm.org/viewvc/llvm-project?rev=350040&view=rev
Log:
[clangd] Delete stray semicolon. NFC

Modified:
    clang-tools-extra/trunk/clangd/Function.h

Modified: clang-tools-extra/trunk/clangd/Function.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/Function.h?rev=350040&r1=350039&r2=350040&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/Function.h (original)
+++ clang-tools-extra/trunk/clangd/Function.h Sun Dec 23 19:19:53 2018
@@ -133,7 +133,6 @@ public:
     std::lock_guard<std::recursive_mutex> Lock(ListenersMu);
     Listeners.push_back({std::move(L), ++ListenerCount});
     return Subscription(this, ListenerCount);
-    ;
   }
 
   // Synchronously sends an event to all registered listeners.




More information about the cfe-commits mailing list