diff options
author | Eliot Horowitz <eliot@10gen.com> | 2009-08-21 15:17:58 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2009-08-21 15:17:58 -0400 |
commit | 33ac3c31c302b8cb04bd54232bb9f9f6565a1ca7 (patch) | |
tree | 5a1aec4b31e20d790f3da8bb7b8640baa7849bd0 /db | |
parent | e1928bfda516298dc4dfa1b2782458422cbc98c9 (diff) | |
download | mongo-33ac3c31c302b8cb04bd54232bb9f9f6565a1ca7.tar.gz |
fix mod eq 0
Diffstat (limited to 'db')
-rw-r--r-- | db/matcher.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/db/matcher.h b/db/matcher.h index 03b5b335845..9ef15988e59 100644 --- a/db/matcher.h +++ b/db/matcher.h @@ -63,7 +63,6 @@ namespace mongo { modm = o["1"].numberInt(); uassert( "mod can't be 0" , mod ); - uassert( "mod eq can't be 0" , modm ); } } |