diff options
Diffstat (limited to 'src/parse.h')
-rw-r--r-- | src/parse.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse.h b/src/parse.h index 7aca6af..46f4542 100644 --- a/src/parse.h +++ b/src/parse.h @@ -3,11 +3,11 @@ #include <stddef.h> #include <stdbool.h> -#include "expression.h" +#include "api/vm.h" typedef struct ParseExpression { - ExpressionType type; + UwUVMExpressionType type; union { int int_value; |