summaryrefslogtreecommitdiff
path: root/src/mongo/db/curop_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/curop_test.cpp')
-rw-r--r--src/mongo/db/curop_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/curop_test.cpp b/src/mongo/db/curop_test.cpp
index e650ff776d2..84c85e3cef9 100644
--- a/src/mongo/db/curop_test.cpp
+++ b/src/mongo/db/curop_test.cpp
@@ -49,7 +49,7 @@ const long long intervalShort = 10 * 1000; // 10ms in micros
class TestListener : public Listener {
public:
TestListener() : Listener("test", "", 0) {} // port 0 => any available high port
- virtual void acceptedMP(MessagingPort* mp) {}
+ void accepted(AbstractMessagingPort* mp) override {}
};
AtomicUInt32 threadInitialized(0);