Add get_size to UnsizedArrayOf
This commit is contained in:
parent
a4a7a62389
commit
1cf075ecb6
|
@ -343,6 +343,9 @@ struct UnsizedArrayOf
|
||||||
template <typename T> inline operator T * (void) { return arrayZ; }
|
template <typename T> inline operator T * (void) { return arrayZ; }
|
||||||
template <typename T> inline operator const T * (void) const { return arrayZ; }
|
template <typename T> inline operator const T * (void) const { return arrayZ; }
|
||||||
|
|
||||||
|
inline unsigned int get_size (unsigned int len) const
|
||||||
|
{ return len * Type::static_size; }
|
||||||
|
|
||||||
inline bool sanitize (hb_sanitize_context_t *c, unsigned int count) const
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int count) const
|
||||||
{
|
{
|
||||||
TRACE_SANITIZE (this);
|
TRACE_SANITIZE (this);
|
||||||
|
|
Loading…
Reference in New Issue