diff options
| author | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-22 11:55:26 +0200 |
|---|---|---|
| committer | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-22 11:55:26 +0200 |
| commit | 6d36e6517d5fdf02a583fa276d009f462da3ed84 (patch) | |
| tree | a1a01b7f5d103e111994fa8d7ad96fcc80941e7c /src/syntax.h | |
| parent | 842069b5605d48e3cb9134fa6b119b178d1ae566 (diff) | |
add some arithm evaluation logic
Diffstat (limited to 'src/syntax.h')
| -rw-r--r-- | src/syntax.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.h b/src/syntax.h index 0b5396c..9b34818 100644 --- a/src/syntax.h +++ b/src/syntax.h @@ -23,7 +23,7 @@ struct ArithmNode { ArithmNodeKind kind; union { int lit_val; - IntVec open_fds; + char* varname; struct { BinOp op; ArithmNode* left; |
