mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-14 17:13:40 +00:00
start
This commit is contained in:
parent
b07b97d5d7
commit
b54d9b695a
1 changed files with 3 additions and 1 deletions
|
@ -375,7 +375,9 @@ hb_iter_with_fallback_t<machine_index_t<Iter>,
|
|||
typename Iter::item_t>
|
||||
{
|
||||
machine_index_t (const Iter& it) : it (it) {}
|
||||
machine_index_t (const machine_index_t& o) : it (o.it) {}
|
||||
machine_index_t (const machine_index_t& o) :
|
||||
hb_iter_with_fallback_t<machine_index_t<Iter>, typename Iter::item_t>(o),
|
||||
it (o.it) {}
|
||||
|
||||
static constexpr bool is_random_access_iterator = Iter::is_random_access_iterator;
|
||||
static constexpr bool is_sorted_iterator = Iter::is_sorted_iterator;
|
||||
|
|
Loading…
Add table
Reference in a new issue