mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
AK: Remove a stray static
No behavior change.
This commit is contained in:
committed by
Ali Mohammad Pur
parent
4409b33145
commit
10216e1743
@@ -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>());
|
||||
|
||||
Reference in New Issue
Block a user