diff options
Diffstat (limited to 'src/mongo/db/matcher/expression_leaf.cpp')
-rw-r--r-- | src/mongo/db/matcher/expression_leaf.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/matcher/expression_leaf.cpp b/src/mongo/db/matcher/expression_leaf.cpp index f9b82a7939f..c2485fa128a 100644 --- a/src/mongo/db/matcher/expression_leaf.cpp +++ b/src/mongo/db/matcher/expression_leaf.cpp @@ -617,7 +617,7 @@ bool BitTestMatchExpression::performBitTest(long long eValue) const { case BITS_ANY_CLEAR: return ~eValue & _bitMask; default: - invariant(false); + MONGO_UNREACHABLE; } } @@ -713,7 +713,7 @@ void BitTestMatchExpression::debugString(StringBuilder& debug, int level) const debug << "$bitsAnyClear:"; break; default: - invariant(false); + MONGO_UNREACHABLE; } debug << " ["; @@ -749,7 +749,7 @@ void BitTestMatchExpression::serialize(BSONObjBuilder* out) const { opString = "$bitsAnyClear"; break; default: - invariant(false); + MONGO_UNREACHABLE; } BSONArrayBuilder arrBob; |