Skip to content

Commit 4aee6b9

Browse files
authored
Update parser.h
1 parent ca5db0c commit 4aee6b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parser.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ typedef enum {
1212
EXPR_ASSIGN
1313
} ExprType;
1414

15-
typedef struct Expr {
15+
typedef struct {
1616
ExprType type;
1717
union {
1818
Value literal;
@@ -40,7 +40,7 @@ typedef enum {
4040
STMT_VAR
4141
} StmtType;
4242

43-
typedef struct Stmt {
43+
typedef struct {
4444
StmtType type;
4545
union {
4646
Expr* expression;

0 commit comments

Comments
 (0)