From 03aab8641300cb09414fa14601e8e1a47fbcca71 Mon Sep 17 00:00:00 2001 From: Maxwell Jeffress Date: Thu, 22 Jan 2026 20:36:19 +1100 Subject: [PATCH] Fix the fix? --- include/groundvm.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/groundvm.h b/include/groundvm.h index 7fbad50..da719f9 100644 --- a/include/groundvm.h +++ b/include/groundvm.h @@ -69,7 +69,8 @@ typedef struct GroundValue { GroundError errorVal; struct GroundFunction* fnVal; struct GroundStruct* structVal; - struct GroundObject* customVal; + // This line seems to cause issues with external libraries. + // struct GroundObject* customVal; } data; } GroundValue;