[clang-tools-extra] r365778 - [clangd] Remove an extra ";", NFC

Haojian Wu via cfe-commits cfe-commits at lists.llvm.org
Thu Jul 11 06:58:56 PDT 2019


Author: hokein
Date: Thu Jul 11 06:58:56 2019
New Revision: 365778

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

Modified:
    clang-tools-extra/trunk/clangd/index/Background.h

Modified: clang-tools-extra/trunk/clangd/index/Background.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/index/Background.h?rev=365778&r1=365777&r2=365778&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/index/Background.h (original)
+++ clang-tools-extra/trunk/clangd/index/Background.h Thu Jul 11 06:58:56 2019
@@ -66,7 +66,7 @@ public:
   /// A work item on the thread pool's queue.
   struct Task {
     template <typename Func>
-    explicit Task(Func &&F) : Run(std::forward<Func>(F)){};
+    explicit Task(Func &&F) : Run(std::forward<Func>(F)){}
 
     std::function<void()> Run;
     llvm::ThreadPriority ThreadPri = llvm::ThreadPriority::Background;




More information about the cfe-commits mailing list