| Index: third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh
|
| diff --git a/third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh b/third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh
|
| index b1f832852d3856cab86ea1c02da57b666fdee34a..0d9a0fa1d8711a0b6f31ac21af452fc159862283 100644
|
| --- a/third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh
|
| +++ b/third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh
|
| @@ -43,11 +43,13 @@ struct maxp
|
| {
|
| static const hb_tag_t tableTag = HB_OT_TAG_maxp;
|
|
|
| - inline unsigned int get_num_glyphs (void) const {
|
| + inline unsigned int get_num_glyphs (void) const
|
| + {
|
| return numGlyphs;
|
| }
|
|
|
| - inline bool sanitize (hb_sanitize_context_t *c) {
|
| + inline bool sanitize (hb_sanitize_context_t *c) const
|
| + {
|
| TRACE_SANITIZE (this);
|
| return TRACE_RETURN (c->check_struct (this) &&
|
| likely (version.major == 1 || (version.major == 0 && version.minor == 0x5000u)));
|
|
|