From bd5502f09f09b3f464754395880f9db30a5fcf60 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 9 Jun 2021 14:03:25 -0600 Subject: [PATCH] [set] Oops. Fix compile --- src/hb-set.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-set.cc b/src/hb-set.cc index d7d5f79e5..5a3096dca 100644 --- a/src/hb-set.cc +++ b/src/hb-set.cc @@ -186,7 +186,7 @@ hb_set_t * hb_set_copy (const hb_set_t *set) { hb_set_t *copy = hb_set_create (); - copy->set (set); + copy->set (*set); return copy; }