summaryrefslogtreecommitdiffstats
path: root/thirdparty/harfbuzz/src/hb-priority-queue.hh
diff options
context:
space:
mode:
authorPedro J. Estébanez <pedrojrulez@gmail.com>2023-02-13 10:44:33 +0100
committerPedro J. Estébanez <pedrojrulez@gmail.com>2023-04-03 09:13:48 +0200
commitabc13dbd0b5e3c12de3d52ea3b843e7c607bdf1d (patch)
tree4f93886fa78b19258c366b007fce91a2f8369857 /thirdparty/harfbuzz/src/hb-priority-queue.hh
parentdf7834ac96398da0cb6b09f77ec010d4dff467f7 (diff)
downloadredot-engine-abc13dbd0b5e3c12de3d52ea3b843e7c607bdf1d.tar.gz
Update HarfBuzz to 7.1.0
Diffstat (limited to 'thirdparty/harfbuzz/src/hb-priority-queue.hh')
-rw-r--r--thirdparty/harfbuzz/src/hb-priority-queue.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/harfbuzz/src/hb-priority-queue.hh b/thirdparty/harfbuzz/src/hb-priority-queue.hh
index ac76b7d955..93a7842eb0 100644
--- a/thirdparty/harfbuzz/src/hb-priority-queue.hh
+++ b/thirdparty/harfbuzz/src/hb-priority-queue.hh
@@ -62,7 +62,7 @@ struct hb_priority_queue_t
item_t result = heap.arrayZ[0];
heap.arrayZ[0] = heap.arrayZ[heap.length - 1];
- heap.shrink (heap.length - 1);
+ heap.resize (heap.length - 1);
if (!is_empty ())
bubble_down (0);