mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
AK: Remove a stray static
No behavior change.
This commit is contained in:
parent
4409b33145
commit
10216e1743
Notes:
sideshowbarker
2024-07-17 04:10:16 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/10216e1743 Pull-request: https://github.com/SerenityOS/serenity/pull/23129
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…
Reference in a new issue