From cdcad93b737c4553b98fdc0c57f6432c5643c97a Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 3 Nov 2023 12:45:16 -0600 Subject: [PATCH] [set] Mark as realloc-movable --- src/hb-set.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hb-set.hh b/src/hb-set.hh index 7d1c941e4..ff2a170d2 100644 --- a/src/hb-set.hh +++ b/src/hb-set.hh @@ -35,6 +35,8 @@ template struct hb_sparseset_t { + static constexpr bool realloc_move = true; + hb_object_header_t header; impl_t s;