Commit 0533ed57 authored by knowledge4igor's avatar knowledge4igor

Fix more override warnigns

parent ff21c524
...@@ -131,7 +131,7 @@ public: ...@@ -131,7 +131,7 @@ public:
poller.rearmFd(fd, interest, pollTag, mode); poller.rearmFd(fd, interest, pollTag, mode);
} }
void runOnce() { void runOnce() override {
if (handlers_.empty()) if (handlers_.empty())
throw std::runtime_error("You need to set at least one handler"); throw std::runtime_error("You need to set at least one handler");
...@@ -153,7 +153,7 @@ public: ...@@ -153,7 +153,7 @@ public:
} }
} }
void run() { void run() override {
handlers_.forEachHandler([](const std::shared_ptr<Handler> handler) { handlers_.forEachHandler([](const std::shared_ptr<Handler> handler) {
handler->context_.tid = std::this_thread::get_id(); handler->context_.tid = std::this_thread::get_id();
}); });
...@@ -162,7 +162,7 @@ public: ...@@ -162,7 +162,7 @@ public:
runOnce(); runOnce();
} }
void shutdown() { void shutdown() override {
shutdown_.store(true); shutdown_.store(true);
shutdownFd.notify(); shutdownFd.notify();
} }
...@@ -413,15 +413,15 @@ public: ...@@ -413,15 +413,15 @@ public:
dispatchCall(key, &SyncImpl::modifyFd, fd, interest, tag, mode); dispatchCall(key, &SyncImpl::modifyFd, fd, interest, tag, mode);
} }
void runOnce() { void runOnce() override {
} }
void run() { void run() override {
for (auto& wrk: workers_) for (auto& wrk: workers_)
wrk->run(); wrk->run();
} }
void shutdown() { void shutdown() override {
for (auto& wrk: workers_) for (auto& wrk: workers_)
wrk->shutdown(); wrk->shutdown();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment