From 41b9f2abcd63589e541da13e295fdb9d2f78a2bb Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 29 Aug 2021 10:47:11 -0600 Subject: [PATCH] [set] Add TODO item --- src/hb-bit-set.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hb-bit-set.hh b/src/hb-bit-set.hh index 84ad67eb7..c21778d88 100644 --- a/src/hb-bit-set.hh +++ b/src/hb-bit-set.hh @@ -332,6 +332,7 @@ struct hb_bit_set_t return; population = other.population; + /* TODO switch to vector operator =. */ hb_memcpy ((void *) pages, (const void *) other.pages, count * pages.item_size); hb_memcpy ((void *) page_map, (const void *) other.page_map, count * page_map.item_size); }