From cddcb31065939928050f2804b7a1fc0b69e10c76 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 12 Jul 2022 13:15:38 -0600 Subject: [PATCH] [vector] Remove residual nullptr_t from when hashmap needed it --- src/hb-vector.hh | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hb-vector.hh b/src/hb-vector.hh index 7b08e3b4d..a6d9f6b3f 100644 --- a/src/hb-vector.hh +++ b/src/hb-vector.hh @@ -43,7 +43,6 @@ struct hb_vector_t : std::conditional, hb_empty using c_array_t = typename std::conditional, hb_array_t>::type; hb_vector_t () = default; - hb_vector_t (std::nullptr_t) : hb_vector_t () {} hb_vector_t (std::initializer_list lst) : hb_vector_t () { alloc (lst.size ());