diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-04-13 22:42:36 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-04-13 22:42:36 +0100 |
| commit | 0d2dbee84e937ccf411787f9dda72e541db3fd20 (patch) | |
| tree | a0f8853f682e46161c38273c727896b1f998ade6 /src/entity.c | |
| parent | d8d22e34dd63547cb6492e8e15b55fcaec4cb3e5 (diff) | |
Fix addressing mode rules for `match in` statements
Diffstat (limited to 'src/entity.c')
| -rw-r--r-- | src/entity.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/entity.c b/src/entity.c index aa1b8f52a..d721df221 100644 --- a/src/entity.c +++ b/src/entity.c @@ -40,6 +40,7 @@ typedef enum EntityFlag { EntityFlag_Ellipsis = 1<<6, EntityFlag_NoAlias = 1<<7, EntityFlag_TypeField = 1<<8, + EntityFlag_Value = 1<<9, } EntityFlag; // Zero value means the overloading process is not yet done |