I'm tired of ragebaiting Leo

This commit is contained in:
2026-01-22 20:40:27 +11:00
parent 03aab86413
commit 3f684dad3f

View File

@@ -58,7 +58,8 @@ typedef struct GroundError {
*/ */
typedef struct GroundValue { typedef struct GroundValue {
GroundValueType type; GroundValueType type;
struct GroundStruct* customType; // This line seems to be causing issues with extlibs
// struct GroundStruct* customType;
union { union {
int64_t intVal; int64_t intVal;
double doubleVal; double doubleVal;
@@ -69,8 +70,7 @@ typedef struct GroundValue {
GroundError errorVal; GroundError errorVal;
struct GroundFunction* fnVal; struct GroundFunction* fnVal;
struct GroundStruct* structVal; struct GroundStruct* structVal;
// This line seems to cause issues with external libraries. struct GroundObject* customVal;
// struct GroundObject* customVal;
} data; } data;
} GroundValue; } GroundValue;