[set-digest] Minor don't use !! when auto bool conversion happens

This commit is contained in:
Behdad Esfahbod 2022-05-29 06:33:34 -06:00
parent 371e14d99c
commit b6fed6f711
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ struct hb_set_digest_lowest_bits_t
bool add_sorted_array (const hb_sorted_array_t<const T>& arr) { return add_sorted_array (&arr, arr.len ()); }
bool may_have (hb_codepoint_t g) const
{ return !!(mask & mask_for (g)); }
{ return mask & mask_for (g); }
private: