[clangd] Delete trailing ; NFC
authorFangrui Song <maskray@google.com>
Sun, 23 Dec 2018 22:20:34 +0000 (22:20 +0000)
committerFangrui Song <maskray@google.com>
Sun, 23 Dec 2018 22:20:34 +0000 (22:20 +0000)
llvm-svn: 350037

clang-tools-extra/clangd/TUScheduler.h

index 33b394c..7aaaa08 100644 (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.