diff options
author | Himbeer <himbeer@disroot.org> | 2025-05-08 15:00:38 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2025-05-08 15:00:38 +0200 |
commit | 8349a65210cc0eaff603bcd2445786493221fc15 (patch) | |
tree | 80912537bb248aab19357b3178bad13c2a2b362f | |
parent | ec817184c088bc0c33a366bfbecc48f5545fa532 (diff) |
Remove unnecessary *crement information
-rw-r--r-- | include/parse.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/parse.h b/include/parse.h index 8cb5f2c..ab9f684 100644 --- a/include/parse.h +++ b/include/parse.h @@ -17,11 +17,6 @@ struct ast_assign { struct expr rhs; }; -enum crement { - INCREMENT, - DECREMENT, -}; - struct ast_elsebody { struct ast_stmt *stmts; int stmtsz, stmtlen; @@ -88,7 +83,6 @@ struct ast_stmt { union { struct ast_local localvar; struct ast_assign assign; - enum crement cre; struct ast_if conditional; struct ast_for loop; struct ast_return ret; |