folly: avoid new warnings from -Winconsistent-missing-override
[folly.git] / folly / futures / test / ViaTest.cpp
index 4a78ce7dbc0e83367d817aa20f2096ce0a541c69..d203c18c211eb630f97d359877a6ebb24776b54f 100644 (file)
@@ -27,7 +27,7 @@ using namespace folly;
 struct ManualWaiter : public DrivableExecutor {
   explicit ManualWaiter(std::shared_ptr<ManualExecutor> ex) : ex(ex) {}
 
-  void add(Func f) {
+  void add(Func f) override {
     ex->add(f);
   }