diff options
author | Aaron <aaron@10gen.com> | 2012-03-22 14:38:23 -0700 |
---|---|---|
committer | Aaron <aaron@10gen.com> | 2012-03-22 15:52:00 -0700 |
commit | 8310ae91a569159cdf325985fd7b178194d7d53a (patch) | |
tree | 41c6000d37b7b3683703a2340f837c328b423573 /src/mongo/db/matcher.h | |
parent | 5e36329307c9c884200a72b1659e2f886a0a84df (diff) | |
download | mongo-8310ae91a569159cdf325985fd7b178194d7d53a.tar.gz |
error codes
Diffstat (limited to 'src/mongo/db/matcher.h')
-rw-r--r-- | src/mongo/db/matcher.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/matcher.h b/src/mongo/db/matcher.h index 2a03e3e69ed..6df6e8e2014 100644 --- a/src/mongo/db/matcher.h +++ b/src/mongo/db/matcher.h @@ -102,7 +102,7 @@ namespace mongo { bool hasLoadedRecord() const { return _loadedRecord; } bool hasElemMatchKey() const { return _elemMatchKeyFound; } string elemMatchKey() const { - verify( 16099, hasElemMatchKey() ); + verify( 16108, hasElemMatchKey() ); return _elemMatchKey; } |