diff options
author | Eliot Horowitz <eliot@10gen.com> | 2013-05-08 12:06:17 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2013-05-09 10:16:55 -0400 |
commit | 0ee3411cf465a49dcac6b0146557cb5c9e2ea430 (patch) | |
tree | 45f3860acee9401b63321892c7f409cdb9dcd9f5 /src/mongo/db/matcher/expression_where.cpp | |
parent | f965a97f3077be56bc0423d851dc1e3aeee4c0b5 (diff) | |
download | mongo-0ee3411cf465a49dcac6b0146557cb5c9e2ea430.tar.gz |
SERVER-6400: remove MatchCategory concept
Diffstat (limited to 'src/mongo/db/matcher/expression_where.cpp')
-rw-r--r-- | src/mongo/db/matcher/expression_where.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/matcher/expression_where.cpp b/src/mongo/db/matcher/expression_where.cpp index 532f403a2ce..c7010eeb4a2 100644 --- a/src/mongo/db/matcher/expression_where.cpp +++ b/src/mongo/db/matcher/expression_where.cpp @@ -29,7 +29,7 @@ namespace mongo { class WhereMatchExpression : public MatchExpression { public: - WhereMatchExpression() : MatchExpression( SPECIAL, WHERE ){ _func = 0; } + WhereMatchExpression() : MatchExpression( WHERE ){ _func = 0; } virtual ~WhereMatchExpression(){} Status init( const StringData& ns, const StringData& theCode, const BSONObj& scope ); |