[set] Actually derive iterator from hb_sorted_iter_t<>

This commit is contained in:
Behdad Esfahbod 2018-12-21 20:07:52 -05:00
parent fc35919d01
commit 89d04129e2
1 changed files with 1 additions and 1 deletions

View File

@ -671,7 +671,7 @@ struct hb_set_t
/*
* Iterator implementation.
*/
struct iter_t
struct iter_t : hb_sorted_iter_t<iter_t, hb_codepoint_t>
{
iter_t (const hb_set_t &s_) : s (s_), v (INVALID) { __next__ (); }