From 10216e17431dc961f5edcdff11e7564be1589ded Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 8 Feb 2024 18:52:34 -0500 Subject: [PATCH] AK: Remove a stray `static` No behavior change. --- AK/Array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/Array.h b/AK/Array.h index 67b38d01a2b..a8c5629f2af 100644 --- a/AK/Array.h +++ b/AK/Array.h @@ -156,7 +156,7 @@ constexpr auto integer_sequence_generate_array([[maybe_unused]] T const offset, } template -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(offset, MakeIntegerSequence());