projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae1ab91
)
[clangd] Delete trailing ; NFC
author
Fangrui Song
<maskray@google.com>
Sun, 23 Dec 2018 22:20:34 +0000
(22:20 +0000)
committer
Fangrui Song
<maskray@google.com>
Sun, 23 Dec 2018 22:20:34 +0000
(22:20 +0000)
llvm-svn: 350037
clang-tools-extra/clangd/TUScheduler.h
patch
|
blob
|
history
diff --git
a/clang-tools-extra/clangd/TUScheduler.h
b/clang-tools-extra/clangd/TUScheduler.h
index
33b394c
..
7aaaa08
100644
(file)
--- a/
clang-tools-extra/clangd/TUScheduler.h
+++ b/
clang-tools-extra/clangd/TUScheduler.h
@@
-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.