[set-digest] Use using instead of typedef

This commit is contained in:
Behdad Esfahbod 2021-09-21 12:21:02 -06:00
parent 5694561f75
commit 3b2929e8a9
1 changed files with 8 additions and 6 deletions

View File

@ -168,15 +168,17 @@ struct hb_set_digest_combiner_t
* There is not much science to this: it's a result of intuition
* and testing.
*/
typedef hb_set_digest_combiner_t
<
hb_set_digest_lowest_bits_t<unsigned long, 4>,
using hb_set_digest_t =
hb_set_digest_combiner_t
<
hb_set_digest_lowest_bits_t<unsigned long, 0>,
hb_set_digest_lowest_bits_t<unsigned long, 9>
hb_set_digest_lowest_bits_t<unsigned long, 4>,
hb_set_digest_combiner_t
<
hb_set_digest_lowest_bits_t<unsigned long, 0>,
hb_set_digest_lowest_bits_t<unsigned long, 9>
>
>
> hb_set_digest_t;
;
#endif /* HB_SET_DIGEST_HH */