Update unstable with master #18
@@ -31,6 +31,7 @@ typedef enum ListAccessStatus {
|
|||||||
|
|
||||||
struct GroundValue;
|
struct GroundValue;
|
||||||
struct GroundFunction;
|
struct GroundFunction;
|
||||||
|
struct GroundStruct;
|
||||||
|
|
||||||
struct List;
|
struct List;
|
||||||
|
|
||||||
@@ -58,8 +59,7 @@ typedef struct GroundError {
|
|||||||
*/
|
*/
|
||||||
typedef struct GroundValue {
|
typedef struct GroundValue {
|
||||||
GroundValueType type;
|
GroundValueType type;
|
||||||
// This line seems to be causing issues with extlibs
|
struct GroundStruct* customType;
|
||||||
// struct GroundStruct* customType;
|
|
||||||
union {
|
union {
|
||||||
int64_t intVal;
|
int64_t intVal;
|
||||||
double doubleVal;
|
double doubleVal;
|
||||||
|
|||||||
@@ -62,7 +62,6 @@ typedef struct GroundError {
|
|||||||
*/
|
*/
|
||||||
typedef struct GroundValue {
|
typedef struct GroundValue {
|
||||||
GroundValueType type;
|
GroundValueType type;
|
||||||
struct GroundStruct* customType;
|
|
||||||
union {
|
union {
|
||||||
int64_t intVal;
|
int64_t intVal;
|
||||||
double doubleVal;
|
double doubleVal;
|
||||||
@@ -75,6 +74,7 @@ typedef struct GroundValue {
|
|||||||
struct GroundStruct* structVal;
|
struct GroundStruct* structVal;
|
||||||
struct GroundObject* customVal;
|
struct GroundObject* customVal;
|
||||||
} data;
|
} data;
|
||||||
|
struct GroundStruct* customType;
|
||||||
} GroundValue;
|
} GroundValue;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user