diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-01-19 19:02:44 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-01-19 19:02:44 +0000 |
| commit | 563b1e2b285e788338aecfa9f3d6536fb9516fd0 (patch) | |
| tree | 8ea1f852f89ee765da94dab334b9a2efbec31cdc /src/entity.c | |
| parent | 4603d2525ebdfa57522ec60db4a86cbc99251ee5 (diff) | |
`immutable` field prefix
Diffstat (limited to 'src/entity.c')
| -rw-r--r-- | src/entity.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entity.c b/src/entity.c index 449c25eeb..70c117d21 100644 --- a/src/entity.c +++ b/src/entity.c @@ -34,8 +34,8 @@ typedef enum EntityFlag { EntityFlag_Anonymous = 1<<2, EntityFlag_Field = 1<<3, EntityFlag_Param = 1<<4, - EntityFlag_Ellipsis = 1<<5, - EntityFlag_VectorElem = 1<<6, + EntityFlag_VectorElem = 1<<5, + EntityFlag_Ellipsis = 1<<6, EntityFlag_NoAlias = 1<<7, } EntityFlag; |