[array] Add a std::forward

This commit is contained in:
Behdad Esfahbod 2022-08-18 16:15:00 -06:00
parent c606978ee0
commit df040de9b4
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ struct hb_sorted_array_t :
this->length, this->length,
sizeof (Type), sizeof (Type),
_hb_cmp_method<T, Type, Ts...>, _hb_cmp_method<T, Type, Ts...>,
ds...); std::forward<Ts> (ds)...);
} }
}; };
template <typename T> inline hb_sorted_array_t<T> template <typename T> inline hb_sorted_array_t<T>