diff options
author | Tess Avitabile <tess.avitabile@mongodb.com> | 2017-08-01 15:32:03 -0400 |
---|---|---|
committer | Tess Avitabile <tess.avitabile@mongodb.com> | 2017-08-09 10:43:42 -0400 |
commit | 50a1afafc816097ed57804ff7033dffd85dbe160 (patch) | |
tree | d9d54f202d8033391d74f4a2828a8d26123c3f07 /src/mongo/bson/bsonobj.h | |
parent | 2de7b036fd98ba618d4a9cf4cbe1cf8e81132d48 (diff) | |
download | mongo-50a1afafc816097ed57804ff7033dffd85dbe160.tar.gz |
SERVER-30189 Reduce calls to allocator for large $in expressions
Diffstat (limited to 'src/mongo/bson/bsonobj.h')
-rw-r--r-- | src/mongo/bson/bsonobj.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mongo/bson/bsonobj.h b/src/mongo/bson/bsonobj.h index 4344995b23c..a6d7abea953 100644 --- a/src/mongo/bson/bsonobj.h +++ b/src/mongo/bson/bsonobj.h @@ -42,7 +42,6 @@ #include "mongo/base/string_data_comparator_interface.h" #include "mongo/bson/bson_comparator_interface_base.h" #include "mongo/bson/bsonelement.h" -#include "mongo/bson/bsonelement_comparator_interface.h" #include "mongo/bson/bsontypes.h" #include "mongo/bson/oid.h" #include "mongo/bson/timestamp.h" @@ -53,9 +52,6 @@ namespace mongo { -typedef std::set<BSONElement, BSONElementCmpWithoutField> BSONElementSet; -typedef std::multiset<BSONElement, BSONElementCmpWithoutField> BSONElementMSet; - /** C++ representation of a "BSON" object -- that is, an extended JSON-style object in a binary representation. |