From 2b1864c53a13cfbd868e9c3b41f0d1f3d2ea2ff7 Mon Sep 17 00:00:00 2001 From: Daniel Bertalan Date: Fri, 24 Dec 2021 10:44:52 +0100 Subject: [PATCH] AK: Add missing Array.h include to CheckedFormatString.h GCC 12 complains that iota_array is used before it's declared. GCC 11 works fine without it though. --- AK/CheckedFormatString.h | 1 + 1 file changed, 1 insertion(+) diff --git a/AK/CheckedFormatString.h b/AK/CheckedFormatString.h index 33943be44c..cf83944533 100644 --- a/AK/CheckedFormatString.h +++ b/AK/CheckedFormatString.h @@ -8,6 +8,7 @@ #include #include +#include #include #include