summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'types.h')
-rw-r--r--types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/types.h b/types.h
index 523f882..2e9383f 100644
--- a/types.h
+++ b/types.h
@@ -310,9 +310,9 @@ typedef struct Type {
} Type;
#define BLOCK_FLAG_FN 0x01
-
+#define BLOCK_FLAG_FOUND_TYPES 0x02
typedef struct Block {
- uint16_t flags;
+ U16 flags;
Location start;
Location end;
struct Statement *stmts;