You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
HarfBuzz: Update to version 6.0.0
This commit is contained in:
4
thirdparty/harfbuzz/src/hb-object.hh
vendored
4
thirdparty/harfbuzz/src/hb-object.hh
vendored
@@ -80,7 +80,7 @@ struct hb_lockable_set_t
|
||||
if (item)
|
||||
{
|
||||
item_t old = *item;
|
||||
*item = items[items.length - 1];
|
||||
*item = std::move (items.tail ());
|
||||
items.pop ();
|
||||
l.unlock ();
|
||||
old.fini ();
|
||||
@@ -123,7 +123,7 @@ struct hb_lockable_set_t
|
||||
l.lock ();
|
||||
while (items.length)
|
||||
{
|
||||
item_t old = items[items.length - 1];
|
||||
item_t old = items.tail ();
|
||||
items.pop ();
|
||||
l.unlock ();
|
||||
old.fini ();
|
||||
|
||||
Reference in New Issue
Block a user