[set-digest] Minor simplify

This commit is contained in:
Behdad Esfahbod 2022-11-16 14:15:01 -07:00
parent 9855b678f2
commit 95b9763dbc
1 changed files with 1 additions and 5 deletions

View File

@ -103,11 +103,7 @@ struct hb_set_digest_bits_pattern_t
template <typename T>
bool add_sorted_array (const T *array, unsigned int count, unsigned int stride=sizeof(T))
{
for (unsigned int i = 0; i < count; i++)
{
add (*array);
array = (const T *) (stride + (const char *) array);
}
add_array (array, count, stride);
return true;
}
template <typename T>