From 4276578881aa5b3d7648086e256f38be07655364 Mon Sep 17 00:00:00 2001 From: meisterodin <132193825+meisterodin@users.noreply.github.com> Date: Sun, 30 Apr 2023 10:43:26 +0200 Subject: [PATCH] Add #include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Building fails in Mint 21 Vanessa. It complains about ‘stack’ in namespace ‘std'. Just added "#include " on line 7. --- es-app/src/views/gamelist/ISimpleGameListView.h | 1 + 1 file changed, 1 insertion(+) diff --git a/es-app/src/views/gamelist/ISimpleGameListView.h b/es-app/src/views/gamelist/ISimpleGameListView.h index e56d6e511c..3507d9c495 100644 --- a/es-app/src/views/gamelist/ISimpleGameListView.h +++ b/es-app/src/views/gamelist/ISimpleGameListView.h @@ -4,6 +4,7 @@ #include "components/TextComponent.h" #include "components/ImageComponent.h" +#include class ISimpleGameListView : public IGameListView {