AK: Remove a stray static

No behavior change.
This commit is contained in:
Nico Weber 2024-02-08 18:52:34 -05:00 committed by Ali Mohammad Pur
parent 4409b33145
commit 10216e1743

View file

@ -156,7 +156,7 @@ constexpr auto integer_sequence_generate_array([[maybe_unused]] T const offset,
}
template<typename T, T N>
constexpr static auto iota_array(T const offset = {})
constexpr auto iota_array(T const offset = {})
{
static_assert(N >= T {}, "Negative sizes not allowed in iota_array()");
return Detail::integer_sequence_generate_array<T>(offset, MakeIntegerSequence<T, N>());