From 2410ab89440dcf55c2051d8575b852220936c82d Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Sat, 6 Jan 2024 12:54:20 +0100 Subject: [PATCH] Fix use of STL's std::map + std::vector --- LEGO1/mxstl/stlcompat.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/LEGO1/mxstl/stlcompat.h b/LEGO1/mxstl/stlcompat.h index bc0076bf..29c31549 100644 --- a/LEGO1/mxstl/stlcompat.h +++ b/LEGO1/mxstl/stlcompat.h @@ -10,9 +10,13 @@ #else #include #include +#include #include +#include using std::list; +using std::map; using std::set; +using std::vector; #endif #endif // STLCOMPAT_H