[algs] Fix typo in hb_pair_t conversion operator

Fixes https://github.com/harfbuzz/harfbuzz/issues/2083
This commit is contained in:
Behdad Esfahbod 2022-02-13 13:39:26 -06:00
parent 7af165dbf0
commit 94517850dd
1 changed files with 1 additions and 1 deletions

View File

@ -504,7 +504,7 @@ struct hb_pair_t
template <typename Q1, typename Q2,
hb_enable_if (hb_is_convertible (T1, Q1) &&
hb_is_convertible (T2, T2))>
hb_is_convertible (T2, Q2))>
operator hb_pair_t<Q1, Q2> () { return hb_pair_t<Q1, Q2> (first, second); }
hb_pair_t<T1, T2> reverse () const