mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 06:04:57 +00:00
AK: Remove a stray static
No behavior change.
This commit is contained in:
parent
4409b33145
commit
10216e1743
1 changed files with 1 additions and 1 deletions
|
@ -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>());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue