diff --git a/src/hb-bit-set-invertible.hh b/src/hb-bit-set-invertible.hh index 7c7bc372b..084e1d218 100644 --- a/src/hb-bit-set-invertible.hh +++ b/src/hb-bit-set-invertible.hh @@ -145,9 +145,9 @@ struct hb_bit_set_invertible_t else { if (unlikely (inverted)) - process (hb_bitwise_ge, other); + process (hb_bitwise_lt, other); else - process (hb_bitwise_le, other); + process (hb_bitwise_gt, other); } inverted = inverted && other.inverted; }