diff options
Diffstat (limited to 'include/expr.h')
-rw-r--r-- | include/expr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/expr.h b/include/expr.h index a0242bb..114d5a1 100644 --- a/include/expr.h +++ b/include/expr.h @@ -47,7 +47,6 @@ enum access { struct access_e { struct location loc; - struct grp_e grp; enum access kind; union { const char *field; @@ -61,7 +60,8 @@ struct tag_e { struct location loc; int dotagof; - struct access_e access; + struct grp_e grp; + struct access_e *access; }; enum signop { |