Commit deb71d74 authored by Nathan Lanza's avatar Nathan Lanza Committed by Facebook GitHub Bot

Mark some destructors that are overriden as `override`

Summary: This satisfies a new error in llvm11

Reviewed By: smeenai

Differential Revision: D27421459

fbshipit-source-id: 963d809a4f430a365223786ea7d2591fe239062f
parent d104e15d
...@@ -26,7 +26,7 @@ namespace folly { ...@@ -26,7 +26,7 @@ namespace folly {
// (i.e. B() can be called only after A() returns) too. // (i.e. B() can be called only after A() returns) too.
class SequencedExecutor : public virtual Executor { class SequencedExecutor : public virtual Executor {
public: public:
virtual ~SequencedExecutor() {} virtual ~SequencedExecutor() override {}
}; };
} // namespace folly } // namespace folly
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