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 05bb48c..17e2954 100644
--- a/types.h
+++ b/types.h
@@ -560,7 +560,7 @@ typedef struct EachExpr {
struct {
IdentID id;
} c;
- Type type;
+ Type type; /* uninitialized unless typed or flags & EACH_ANNOTATED_TYPE */
Identifier index; /* NULL = no index */
Identifier value; /* NULL = no value */
Block body;
@@ -735,7 +735,7 @@ enum {
typedef struct Statement {
Location where;
StatementKind kind;
- U16 flags;
+ U8 flags;
union {
Declaration decl;
Expression expr;