[bit-set-invertible] Fix subtract() logic

This commit is contained in:
Behdad Esfahbod 2021-08-19 13:05:12 -06:00
parent f317d8e426
commit f4fd7baf7e
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ struct hb_bit_set_invertible_t
else else
{ {
if (unlikely (inverted)) if (unlikely (inverted))
process (hb_bitwise_non, other); process (hb_bitwise_or, other);
else else
process (hb_bitwise_and, other); process (hb_bitwise_and, other);
} }