summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/mock/mock_dbclient_cursor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/dbtests/mock/mock_dbclient_cursor.h')
-rw-r--r--src/mongo/dbtests/mock/mock_dbclient_cursor.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/dbtests/mock/mock_dbclient_cursor.h b/src/mongo/dbtests/mock/mock_dbclient_cursor.h
index c8aa3a38bcf..22fec61898b 100644
--- a/src/mongo/dbtests/mock/mock_dbclient_cursor.h
+++ b/src/mongo/dbtests/mock/mock_dbclient_cursor.h
@@ -29,7 +29,6 @@
#pragma once
-#include <boost/scoped_ptr.hpp>
#include "mongo/client/dbclientcursor.h"
#include "mongo/client/dbclientmockcursor.h"
@@ -54,7 +53,7 @@ namespace mongo {
mongo::BSONObj next();
private:
- boost::scoped_ptr<mongo::DBClientMockCursor> _cursor;
+ std::unique_ptr<mongo::DBClientMockCursor> _cursor;
mongo::BSONObj _resultSet;
};
}