From 4229386501a87344d1099f8290dc565d1a4441c7 Mon Sep 17 00:00:00 2001 From: Reinhold Gschweicher Date: Sun, 24 Apr 2022 23:32:07 +0200 Subject: List: add missing array include List.h uses `std::array` as container, but is missing the `` include. Add it to make the header self contained. The `memory` include is unused and can be removed. --- src/displayapp/screens/List.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/displayapp/screens/List.h b/src/displayapp/screens/List.h index 023de3aa..88ef28ea 100644 --- a/src/displayapp/screens/List.h +++ b/src/displayapp/screens/List.h @@ -2,7 +2,7 @@ #include #include -#include +#include #include "displayapp/screens/Screen.h" #include "displayapp/Apps.h" #include "components/settings/Settings.h" -- cgit v1.2.3