diff options
| author | Reinhold Gschweicher <pyro4hell@gmail.com> | 2022-04-24 21:32:07 (GMT) |
|---|---|---|
| committer | JF <JF002@users.noreply.github.com> | 2022-05-04 20:24:53 (GMT) |
| commit | 4229386501a87344d1099f8290dc565d1a4441c7 (patch) | |
| tree | 2b249dbc3a27164f2b782648357cb2a661ba962b /src/displayapp/screens/List.h | |
| parent | 09a50dcc15144815ec23a7bc7b09b705a1c1eaf7 (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/screens/List.h')
| -rw-r--r-- | src/displayapp/screens/List.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/List.h b/src/displayapp/screens/List.h index 023de3a..88ef28e 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" |
