diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-01-01 14:23:34 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-01-01 14:23:34 +0100 |
commit | 8a3ed3c5996e8a88d94c24daa091dcd11fd81fac (patch) | |
tree | d9ac6b421e70de7ebda0697e3faf3f73c9e3c07c /src/parse.h | |
parent | 53990e718867f7bf0cd49a1962e9695164a17eb2 (diff) | |
download | uwu-lang-8a3ed3c5996e8a88d94c24daa091dcd11fd81fac.tar.xz |
uwuint: use long instead of int to prevent YEAR2038 problem in nolambda time library
Diffstat (limited to 'src/parse.h')
-rw-r--r-- | src/parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.h b/src/parse.h index 46f4542..7c13dd7 100644 --- a/src/parse.h +++ b/src/parse.h @@ -10,7 +10,7 @@ typedef struct ParseExpression UwUVMExpressionType type; union { - int int_value; + long int_value; char *str_value; } value; size_t num_children; |