summaryrefslogtreecommitdiff
path: root/src/mongo/db/geo
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2012-03-12 18:47:27 -0700
committerAaron <aaron@10gen.com>2012-03-22 15:51:58 -0700
commite4340b9c4338ee7829624a237e1b71d418852af8 (patch)
treefea54d2d8dfb146f6f0f284424f803b685087678 /src/mongo/db/geo
parentd265d5fdb9830b051ba8aa5dc37f54304c3931ea (diff)
downloadmongo-e4340b9c4338ee7829624a237e1b71d418852af8.tar.gz
Remove 'alwaysUseRecord' mode in CoveredIndexMatcher, currently unused
Diffstat (limited to 'src/mongo/db/geo')
-rw-r--r--src/mongo/db/geo/2d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/geo/2d.cpp b/src/mongo/db/geo/2d.cpp
index eca425ff736..2fba3fcc2d8 100644
--- a/src/mongo/db/geo/2d.cpp
+++ b/src/mongo/db/geo/2d.cpp
@@ -1273,7 +1273,7 @@ namespace mongo {
const IndexDetails * _id;
};
- const shared_ptr< CoveredIndexMatcher > GeoCursorBase::emptyMatcher( new CoveredIndexMatcher( BSONObj(), BSONObj(), false ) );
+ const shared_ptr< CoveredIndexMatcher > GeoCursorBase::emptyMatcher( new CoveredIndexMatcher( BSONObj(), BSONObj() ) );
// TODO: Pull out the cursor bit from the browse, have GeoBrowse as field of cursor to clean up
// this hierarchy a bit. Also probably useful to look at whether GeoAccumulator can be a member instead