diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-18 00:43:49 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-18 00:43:49 +0200 |
commit | 09d1ebb7aed4de4cc63e88d8e89a56c647b0d902 (patch) | |
tree | 6554636c35a6a81e7be73b9ef72fcdc8496fc3be /thirdparty/harfbuzz/src/hb-face.hh | |
parent | 04082597f90dcb624c6466a7e1f173489a8ec517 (diff) | |
parent | ec8084d87f273266c5d79d06c421b5167dd97f94 (diff) |
Merge pull request #66004 from bruvzg/hb52
Update to version 5.2.0, add new Unicode 15 blocks and scripts.
Diffstat (limited to 'thirdparty/harfbuzz/src/hb-face.hh')
-rw-r--r-- | thirdparty/harfbuzz/src/hb-face.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/harfbuzz/src/hb-face.hh b/thirdparty/harfbuzz/src/hb-face.hh index 765f272858..12e10d01e0 100644 --- a/thirdparty/harfbuzz/src/hb-face.hh +++ b/thirdparty/harfbuzz/src/hb-face.hh @@ -83,7 +83,7 @@ struct hb_face_t unsigned int get_upem () const { - unsigned int ret = upem.get_relaxed (); + unsigned int ret = upem; if (unlikely (!ret)) { return load_upem (); @@ -93,7 +93,7 @@ struct hb_face_t unsigned int get_num_glyphs () const { - unsigned int ret = num_glyphs.get_relaxed (); + unsigned int ret = num_glyphs; if (unlikely (ret == UINT_MAX)) return load_num_glyphs (); return ret; |