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