summaryrefslogtreecommitdiff
path: root/src/mongo/db/curop_test.cpp
diff options
context:
space:
mode:
authorMatt Cotter <matt.cotter@mongodb.com>2016-01-27 16:39:14 -0500
committerMatt Cotter <matt.cotter@mongodb.com>2016-05-20 14:06:28 -0400
commit225a2a57350c79a190c13054a038b6c3c559a558 (patch)
tree6e24efd0f62c580e1c09e17d5b5d7a561dd63e01 /src/mongo/db/curop_test.cpp
parente6e7e099aaf11afb626d2cd95dd1d339433f6e7f (diff)
downloadmongo-225a2a57350c79a190c13054a038b6c3c559a558.tar.gz
SERVER-23448 create an ASIO based MessagingPort
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);