Use HB_ALWAYS_INLINE instead of bare __attribute__

The former works on MSVC too.
This commit is contained in:
Behdad Esfahbod 2025-02-09 08:00:18 +00:00
parent ee19666c39
commit b13017e651
2 changed files with 7 additions and 7 deletions

View file

@ -183,19 +183,19 @@ struct hb_buffer_t
allocated_var_bits = 0;
}
__attribute__((always_inline))
HB_ALWAYS_INLINE
hb_glyph_info_t &cur (unsigned int i = 0) { return info[idx + i]; }
__attribute__((always_inline))
HB_ALWAYS_INLINE
hb_glyph_info_t cur (unsigned int i = 0) const { return info[idx + i]; }
__attribute__((always_inline))
HB_ALWAYS_INLINE
hb_glyph_position_t &cur_pos (unsigned int i = 0) { return pos[idx + i]; }
__attribute__((always_inline))
HB_ALWAYS_INLINE
hb_glyph_position_t cur_pos (unsigned int i = 0) const { return pos[idx + i]; }
__attribute__((always_inline))
HB_ALWAYS_INLINE
hb_glyph_info_t &prev () { return out_info[out_len ? out_len - 1 : 0]; }
__attribute__((always_inline))
HB_ALWAYS_INLINE
hb_glyph_info_t prev () const { return out_info[out_len ? out_len - 1 : 0]; }
template <typename set_t>

View file

@ -150,7 +150,7 @@ struct hb_set_digest_t
masks[i] |= one << ((g >> hb_set_digest_shifts[i]) & mb1);
}
__attribute__((always_inline))
HB_ALWAYS_INLINE
bool may_have (hb_codepoint_t g) const
{
for (unsigned i = 0; i < n; i++)