[clangd] Delete trailing ; NFC

llvm-svn: 350037
This commit is contained in:
Fangrui Song 2018-12-23 22:20:34 +00:00
parent ae1ab910cd
commit 2ea656f3ab
1 changed files with 1 additions and 1 deletions

View File

@ -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.