summaryrefslogtreecommitdiffstats
path: root/fnet/src/tests/sync_execute/sync_execute.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fnet/src/tests/sync_execute/sync_execute.cpp')
-rw-r--r--fnet/src/tests/sync_execute/sync_execute.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fnet/src/tests/sync_execute/sync_execute.cpp b/fnet/src/tests/sync_execute/sync_execute.cpp
index e24d63effd5..c832ef0330d 100644
--- a/fnet/src/tests/sync_execute/sync_execute.cpp
+++ b/fnet/src/tests/sync_execute/sync_execute.cpp
@@ -5,7 +5,7 @@
struct DoIt : public FNET_IExecutable {
vespalib::Gate gate;
- virtual void execute() {
+ virtual void execute() override {
gate.countDown();
}
};