diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-01-09 17:35:57 -0500 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-01-15 07:04:25 -0500 |
commit | 44cafa7dddde7510aa0a05efce807a2e294fdc6d (patch) | |
tree | 11d6e26cfa491a0f498c3ce650ee402ec4d7084b /src/mongo/db/ops | |
parent | 40f28cd947e8a5227c5a4f6961143ad1b041105f (diff) | |
download | mongo-44cafa7dddde7510aa0a05efce807a2e294fdc6d.tar.gz |
SERVER-13256 Add std namespace qualifications in headers
Diffstat (limited to 'src/mongo/db/ops')
-rw-r--r-- | src/mongo/db/ops/path_support.h | 2 | ||||
-rw-r--r-- | src/mongo/db/ops/update_driver.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/ops/path_support.h b/src/mongo/db/ops/path_support.h index ce9d2bcf595..ed4515506b8 100644 --- a/src/mongo/db/ops/path_support.h +++ b/src/mongo/db/ops/path_support.h @@ -47,7 +47,7 @@ namespace mongo { static const size_t kMaxPaddingAllowed = 1500000; // Convenience type to hold equality matches at particular paths from a MatchExpression - typedef map<StringData, const EqualityMatchExpression*> EqualityMatches; + typedef std::map<StringData, const EqualityMatchExpression*> EqualityMatches; /** * Finds the longest portion of 'prefix' that exists in document rooted at 'root' and is diff --git a/src/mongo/db/ops/update_driver.h b/src/mongo/db/ops/update_driver.h index 9d864599107..ace7390a1de 100644 --- a/src/mongo/db/ops/update_driver.h +++ b/src/mongo/db/ops/update_driver.h @@ -69,11 +69,11 @@ namespace mongo { * conflicts along the way then those errors will be returned. */ Status populateDocumentWithQueryFields(const BSONObj& query, - const vector<FieldRef*>* immutablePaths, + const std::vector<FieldRef*>* immutablePaths, mutablebson::Document& doc) const; Status populateDocumentWithQueryFields(const CanonicalQuery* query, - const vector<FieldRef*>* immutablePaths, + const std::vector<FieldRef*>* immutablePaths, mutablebson::Document& doc) const; /** |