summaryrefslogtreecommitdiff
path: root/src/mongo/client/dbclientinterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/client/dbclientinterface.h')
-rw-r--r--src/mongo/client/dbclientinterface.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mongo/client/dbclientinterface.h b/src/mongo/client/dbclientinterface.h
index 0aae9081a13..1e42a381d1e 100644
--- a/src/mongo/client/dbclientinterface.h
+++ b/src/mongo/client/dbclientinterface.h
@@ -29,7 +29,6 @@
#pragma once
#include <boost/noncopyable.hpp>
-#include <boost/scoped_ptr.hpp>
#include "mongo/base/string_data.h"
#include "mongo/client/connection_string.h"
@@ -1111,8 +1110,8 @@ namespace mongo {
virtual void _auth(const BSONObj& params);
virtual void sayPiggyBack( Message &toSend );
- boost::scoped_ptr<MessagingPort> p;
- boost::scoped_ptr<SockAddr> server;
+ std::unique_ptr<MessagingPort> p;
+ std::unique_ptr<SockAddr> server;
bool _failed;
const bool autoReconnect;
Backoff autoReconnectBackoff;