mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
Use HB_ALWAYS_INLINE instead of bare __attribute__
The former works on MSVC too.
This commit is contained in:
parent
ee19666c39
commit
b13017e651
2 changed files with 7 additions and 7 deletions
|
@ -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>
|
||||
|
|
|
@ -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++)
|
||||
|
|
Loading…
Add table
Reference in a new issue