[chore](gutil) remove some gutil macros and solve some macro conflict with brpc (#13954)

Co-authored-by: yiguolei <yiguolei@gmail.com>
This commit is contained in:
yiguolei
2022-11-07 13:39:52 +08:00
committed by GitHub
parent e8d2fb6778
commit 32fea672b0
19 changed files with 36 additions and 256 deletions

View File

@ -42,7 +42,7 @@ class FunctionRunnable : public Runnable {
public:
explicit FunctionRunnable(std::function<void()> func) : _func(std::move(func)) {}
void run() OVERRIDE { _func(); }
void run() override { _func(); }
private:
std::function<void()> _func;