summaryrefslogtreecommitdiff
path: root/src/mongo/s/cluster_write.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/cluster_write.cpp')
-rw-r--r--src/mongo/s/cluster_write.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/s/cluster_write.cpp b/src/mongo/s/cluster_write.cpp
index 8145ee80530..0fcc15e539d 100644
--- a/src/mongo/s/cluster_write.cpp
+++ b/src/mongo/s/cluster_write.cpp
@@ -52,7 +52,7 @@
namespace mongo {
using boost::shared_ptr;
- using std::auto_ptr;
+ using std::unique_ptr;
using std::vector;
using std::map;
using std::string;
@@ -166,7 +166,7 @@ namespace mongo {
BSONObj indexDoc = createIndexDoc(ns, keys, unique);
// Go through the shard insert path
- std::auto_ptr<BatchedInsertRequest> insert(new BatchedInsertRequest());
+ std::unique_ptr<BatchedInsertRequest> insert(new BatchedInsertRequest());
insert->addToDocuments(indexDoc);
BatchedCommandRequest request(insert.release());
@@ -208,7 +208,7 @@ namespace mongo {
BatchedCommandResponse* response ) {
// Add _ids to insert request if req'd
- auto_ptr<BatchedCommandRequest> idRequest(BatchedCommandRequest::cloneWithIds(origRequest));
+ unique_ptr<BatchedCommandRequest> idRequest(BatchedCommandRequest::cloneWithIds(origRequest));
const BatchedCommandRequest& request = NULL != idRequest.get() ? *idRequest : origRequest;
const NamespaceString& nss = request.getNSS();