Commit cc060e3e authored by Jim Meyering's avatar Jim Meyering Committed by Facebook GitHub Bot

folly/experimental/coro/BlockingWait.h: mark overriding functions with "override"

Summary:
This avoids the following errors:

  folly/experimental/coro/BlockingWait.h:301:3: error: '~BlockingWaitExecutor' overrides a destructor but is not marked 'override' [-Werror,-Wsuggest-destructor-override]

Reviewed By: r-barnes

Differential Revision: D33397860

fbshipit-source-id: 050c3c564e70dfc5dc1232e58b40f2c4cbcb660a
parent 395c5d94
......@@ -298,7 +298,7 @@ auto makeRefBlockingWaitTask(Awaitable&& awaitable)
class BlockingWaitExecutor final : public folly::DrivableExecutor {
public:
~BlockingWaitExecutor() {
~BlockingWaitExecutor() override {
while (keepAliveCount_.load() > 0) {
drive();
}
......
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