[vector] Remove residual nullptr_t from when hashmap needed it

This commit is contained in:
Behdad Esfahbod 2022-07-12 13:15:38 -06:00
parent 46a36771f4
commit cddcb31065
1 changed files with 0 additions and 1 deletions

View File

@ -43,7 +43,6 @@ struct hb_vector_t : std::conditional<sorted, hb_vector_t<Type, false>, hb_empty
using c_array_t = typename std::conditional<sorted, hb_sorted_array_t<const Type>, hb_array_t<const Type>>::type;
hb_vector_t () = default;
hb_vector_t (std::nullptr_t) : hb_vector_t () {}
hb_vector_t (std::initializer_list<Type> lst) : hb_vector_t ()
{
alloc (lst.size ());