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; _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits