Satisfy Leo's thirst for structs and extlibs

This commit is contained in:
2026-01-22 20:58:49 +11:00
parent 3f684dad3f
commit 68182d916e
2 changed files with 3 additions and 3 deletions

View File

@@ -62,7 +62,6 @@ typedef struct GroundError {
*/
typedef struct GroundValue {
GroundValueType type;
struct GroundStruct* customType;
union {
int64_t intVal;
double doubleVal;
@@ -75,6 +74,7 @@ typedef struct GroundValue {
struct GroundStruct* structVal;
struct GroundObject* customVal;
} data;
struct GroundStruct* customType;
} GroundValue;
/*