Fix missing override in fdbrpc/FlowTests.actor.cpp

This commit is contained in:
Andrew Noyes 2021-01-26 17:29:54 +00:00
parent 7e38cf21f5
commit 3560003c50
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class LambdaCallback final : public CallbackType, public FastAllocated<LambdaCal
func(t);
delete this;
}
void fire(T&& t) {
void fire(T&& t) override {
CallbackType::remove();
func(std::move(t));
delete this;