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.
This commit is contained in:
Reinhold Gschweicher 2022-04-24 23:32:07 +02:00 committed by JF
parent 09a50dcc15
commit 4229386501

View file

@ -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"