Update unstable with master #18

Merged
max merged 4 commits from master into unstable 2026-01-23 14:42:37 +11:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 68182d916e - Show all commits

View File

@@ -31,6 +31,7 @@ typedef enum ListAccessStatus {
struct GroundValue;
struct GroundFunction;
struct GroundStruct;
struct List;
@@ -58,8 +59,7 @@ typedef struct GroundError {
*/
typedef struct GroundValue {
GroundValueType type;
// This line seems to be causing issues with extlibs
// struct GroundStruct* customType;
struct GroundStruct* customType;
union {
int64_t intVal;
double doubleVal;

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;
/*