summaryrefslogtreecommitdiff
path: root/src/mongo/util/bson_util.h
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-01-09 17:35:57 -0500
committerAndrew Morrow <acm@mongodb.com>2015-01-15 07:04:25 -0500
commit44cafa7dddde7510aa0a05efce807a2e294fdc6d (patch)
tree11d6e26cfa491a0f498c3ce650ee402ec4d7084b /src/mongo/util/bson_util.h
parent40f28cd947e8a5227c5a4f6961143ad1b041105f (diff)
downloadmongo-44cafa7dddde7510aa0a05efce807a2e294fdc6d.tar.gz
SERVER-13256 Add std namespace qualifications in headers
Diffstat (limited to 'src/mongo/util/bson_util.h')
-rw-r--r--src/mongo/util/bson_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/bson_util.h b/src/mongo/util/bson_util.h
index b198f5a2798..db873bdfd45 100644
--- a/src/mongo/util/bson_util.h
+++ b/src/mongo/util/bson_util.h
@@ -41,7 +41,7 @@ void bsonArrToNumVector(BSONElement el, std::vector<T>& results){
if(el.type() == Array){
- vector<BSONElement> elements = el.Array();
+ std::vector<BSONElement> elements = el.Array();
for(std::vector<BSONElement>::iterator i = elements.begin(); i != elements.end(); ++i){
results.push_back( (T) (*i).Number() );