[clang-tools-extra] r350037 - [clangd] Delete trailing ; NFC
Fangrui Song via cfe-commits
cfe-commits at lists.llvm.org
Sun Dec 23 14:20:35 PST 2018
Author: maskray
Date: Sun Dec 23 14:20:34 2018
New Revision: 350037
URL: http://llvm.org/viewvc/llvm-project?rev=350037&view=rev
Log:
[clangd] Delete trailing ; NFC
Modified:
clang-tools-extra/trunk/clangd/TUScheduler.h
Modified: clang-tools-extra/trunk/clangd/TUScheduler.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/TUScheduler.h?rev=350037&r1=350036&r2=350037&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/TUScheduler.h (original)
+++ clang-tools-extra/trunk/clangd/TUScheduler.h Sun Dec 23 14:20:34 2018
@@ -62,7 +62,7 @@ struct TUAction {
Idle, // Indicates the worker thread is idle, and ready to run any upcoming
// actions.
};
- TUAction(State S, llvm::StringRef Name) : S(S), Name(Name){};
+ TUAction(State S, llvm::StringRef Name) : S(S), Name(Name) {}
State S;
/// The name of the action currently running, e.g. Update, GoToDef, Hover.
/// Empty if we are in the idle state.
More information about the cfe-commits
mailing list