1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Update HarfBuzz to 7.1.0

This commit is contained in:
Pedro J. Estébanez
2023-02-13 10:44:33 +01:00
parent df7834ac96
commit abc13dbd0b
205 changed files with 14886 additions and 5156 deletions

View File

@@ -172,10 +172,16 @@ struct
HB_FUNCOBJ (hb_iter);
struct
{
template <typename T> unsigned
operator () (T&& c) const
{ return c.len (); }
template <typename T> auto
impl (T&& c, hb_priority<1>) const HB_RETURN (unsigned, c.len ())
template <typename T> auto
impl (T&& c, hb_priority<0>) const HB_RETURN (unsigned, c.len)
public:
template <typename T> auto
operator () (T&& c) const HB_RETURN (unsigned, impl (std::forward<T> (c), hb_prioritize))
}
HB_FUNCOBJ (hb_len);