summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'types.h')
-rw-r--r--types.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/types.h b/types.h
index 3d17f0a..c855702 100644
--- a/types.h
+++ b/types.h
@@ -336,7 +336,8 @@ typedef struct FnType {
} FnType;
enum {
- STRUCT_DEF_FOUND_OFFSETS = 0x00,
+ STRUCT_DEF_FOUND_OFFSETS = 0x01,
+ STRUCT_DEF_CGENERATED = 0x02,
};
typedef struct {
@@ -640,10 +641,6 @@ typedef struct Declaration {
DeclFlags flags;
Expression expr;
Value val; /* only for constant decls. */
-
- struct {
- IdentID *ids; /* array of IDs used in place of ident names. unfortunately needed for user defined types. this is NOT a dynamic array, but is of length arr_len(idents). */
- } c;
} Declaration;
typedef enum {