summaryrefslogtreecommitdiff
path: root/src/mongo/bson
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-06-10 17:43:13 -0400
committerAndrew Morrow <acm@mongodb.com>2015-06-10 22:37:44 -0400
commita9b6612f5322f916298c19a6728817a1034c6aab (patch)
tree0da5b1ce36e6a8e2d85dbdeb49d505ac99bf6e1d /src/mongo/bson
parent0ec1e625760eb9c1a20a3dba78200e8f9ff28d9e (diff)
downloadmongo-a9b6612f5322f916298c19a6728817a1034c6aab.tar.gz
SERVER-17309 Replace std::auto_ptr<T> with std::unique_ptr<T>
Diffstat (limited to 'src/mongo/bson')
-rw-r--r--src/mongo/bson/bsonmisc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/bson/bsonmisc.h b/src/mongo/bson/bsonmisc.h
index 483528d80e0..0c0ea6cdb80 100644
--- a/src/mongo/bson/bsonmisc.h
+++ b/src/mongo/bson/bsonmisc.h
@@ -241,7 +241,7 @@ namespace mongo {
bool haveSubobj() const { return _subobj.get() != 0; }
BSONObjBuilder *subobj();
- std::auto_ptr< BSONObjBuilder > _subobj;
+ std::unique_ptr< BSONObjBuilder > _subobj;
};
/**