mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +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>
|
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()");
|
static_assert(N >= T {}, "Negative sizes not allowed in iota_array()");
|
||||||
return Detail::integer_sequence_generate_array<T>(offset, MakeIntegerSequence<T, N>());
|
return Detail::integer_sequence_generate_array<T>(offset, MakeIntegerSequence<T, N>());
|
||||||
|
|||||||
Reference in New Issue
Block a user