From 298ad2d6589f9eca4a46e1c2ea7892e124285b74 Mon Sep 17 00:00:00 2001 From: Aidan Lee Date: Sun, 25 Jun 2023 20:17:16 +0100 Subject: [PATCH] Include string in Immix.cpp for GC logging (#1059) Tried to compile a project with GC debug logging (HXCPP_GC_DEBUG_LEVEL) and found it failed to compile with string not found in std errors. Including string in immix gets things working. --- src/hx/gc/Immix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hx/gc/Immix.cpp b/src/hx/gc/Immix.cpp index 413e4f716..47fccd5a4 100644 --- a/src/hx/gc/Immix.cpp +++ b/src/hx/gc/Immix.cpp @@ -7,6 +7,7 @@ #include "GcRegCapture.h" #include +#include #include