summaryrefslogtreecommitdiff
path: root/src/displayapp
diff options
context:
space:
mode:
authorReinhold Gschweicher <pyro4hell@gmail.com>2022-04-24 23:32:07 +0200
committerJF <JF002@users.noreply.github.com>2022-05-04 22:24:53 +0200
commit4229386501a87344d1099f8290dc565d1a4441c7 (patch)
tree2b249dbc3a27164f2b782648357cb2a661ba962b /src/displayapp
parent09a50dcc15144815ec23a7bc7b09b705a1c1eaf7 (diff)
List: add missing array include
List.h uses `std::array` as container, but is missing the `<array>` include. Add it to make the header self contained. The `memory` include is unused and can be removed.
Diffstat (limited to 'src/displayapp')
-rw-r--r--src/displayapp/screens/List.h2
1 files changed, 1 insertions, 1 deletions
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 <lvgl/lvgl.h>
#include <cstdint>
-#include <memory>
+#include <array>
#include "displayapp/screens/Screen.h"
#include "displayapp/Apps.h"
#include "components/settings/Settings.h"