[subset/cff] Fix compiler error

About variable with internal linkage with no definition.
This commit is contained in:
Behdad Esfahbod 2023-06-27 16:22:54 -06:00
parent b04721993f
commit 158eba66b3

View file

@ -57,6 +57,16 @@ using str_buff_t = hb_vector_t<unsigned char>;
using str_buff_vec_t = hb_vector_t<str_buff_t>;
using glyph_to_sid_map_t = hb_vector_t<code_pair_t>;
struct length_f_t
{
template <typename Iterable,
hb_requires (hb_is_iterable (Iterable))>
unsigned operator () (const Iterable &_) const { return hb_len (hb_iter (_)); }
unsigned operator () (unsigned _) const { return _; }
}
HB_FUNCOBJ (length_f);
/* CFF INDEX */
template <typename COUNT>
struct CFFIndex
@ -97,15 +107,6 @@ struct CFFIndex
return_trace (true);
}
HB_INTERNAL static struct {
template <typename Iterable,
hb_requires (hb_is_iterable (Iterable))>
unsigned operator () (const Iterable &_) { return hb_len (hb_iter (_)); }
unsigned operator () (unsigned _) { return _; }
}
length_f;
template <typename Iterator,
hb_requires (hb_is_iterator (Iterator))>
bool serialize_header (hb_serialize_context_t *c,