summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/index_entry_comparison.h
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2014-12-01 15:08:35 -0500
committerMathias Stearn <mathias@10gen.com>2014-12-08 11:35:38 -0500
commite3c1cef4840192e33c38510bb188a23879b0425c (patch)
tree9981a670b66dd7a11d3fc049b956d5033217608b /src/mongo/db/storage/index_entry_comparison.h
parent816e8ad94d2c2e6b6b26bbd9de513d9f42404647 (diff)
downloadmongo-e3c1cef4840192e33c38510bb188a23879b0425c.tar.gz
SERVER-13679 Make RecordId and DiskLoc separate types
Diffstat (limited to 'src/mongo/db/storage/index_entry_comparison.h')
-rw-r--r--src/mongo/db/storage/index_entry_comparison.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/storage/index_entry_comparison.h b/src/mongo/db/storage/index_entry_comparison.h
index ea2eb005e9b..f12ea85c4f2 100644
--- a/src/mongo/db/storage/index_entry_comparison.h
+++ b/src/mongo/db/storage/index_entry_comparison.h
@@ -103,8 +103,8 @@ namespace mongo {
static BSONObj makeQueryObject(const BSONObj& keyPrefix,
int prefixLen,
bool prefixExclusive,
- const vector<const BSONElement*>& keySuffix,
- const vector<bool>& suffixInclusive,
+ const std::vector<const BSONElement*>& keySuffix,
+ const std::vector<bool>& suffixInclusive,
const int cursorDirection);
private: