[iter] Fix sorted_iter iter class

This commit is contained in:
Behdad Esfahbod 2018-12-30 20:06:12 -05:00
parent 93615b9598
commit 8ac64d0090
1 changed files with 2 additions and 2 deletions

View File

@ -193,10 +193,10 @@ enum hb_bfind_not_found_t
template <typename Type>
struct hb_sorted_array_t :
hb_sorted_iter_t<hb_sorted_array_t<Type>, Type>,
hb_sorted_iter_t<hb_sorted_array_t<Type>, Type&>,
hb_array_t<Type>
{
typedef hb_sorted_iter_t<hb_sorted_array_t<Type>, Type> iter_base_t;
typedef hb_sorted_iter_t<hb_sorted_array_t<Type>, Type&> iter_base_t;
HB_ITER_USING (iter_base_t);
hb_sorted_array_t () : hb_array_t<Type> () {}