diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-04 08:42:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-04 08:42:24 +0200 |
commit | 5b3b06187b79ff859bb7da81362d2234c6e64a50 (patch) | |
tree | 9813d48d3da397f085b2f4cfda7a31ebb17a19f1 /thirdparty/harfbuzz/src/hb-cache.hh | |
parent | 5cc830892af0710614053d7622e8148fa2ef3963 (diff) | |
parent | 6c27d9d6244303754e111eccc7c1a42df5b9bca1 (diff) |
Merge pull request #62696 from bruvzg/hb441
HarfBuzz: Update to version 4.4.1
Diffstat (limited to 'thirdparty/harfbuzz/src/hb-cache.hh')
-rw-r--r-- | thirdparty/harfbuzz/src/hb-cache.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/harfbuzz/src/hb-cache.hh b/thirdparty/harfbuzz/src/hb-cache.hh index e617b75de9..d6b229ed65 100644 --- a/thirdparty/harfbuzz/src/hb-cache.hh +++ b/thirdparty/harfbuzz/src/hb-cache.hh @@ -32,7 +32,7 @@ /* Implements a lockfree cache for int->int functions. */ -template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits> +template <unsigned int key_bits=16, unsigned int value_bits=8 + 32 - key_bits, unsigned int cache_bits=8> struct hb_cache_t { static_assert ((key_bits >= cache_bits), ""); |