diff options
Diffstat (limited to 'src/parser.hpp')
| -rw-r--r-- | src/parser.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parser.hpp b/src/parser.hpp index 6ce337352..eab230816 100644 --- a/src/parser.hpp +++ b/src/parser.hpp @@ -42,6 +42,7 @@ enum ParseFileError { ParseFile_NotFound, ParseFile_InvalidToken, ParseFile_GeneralError, + ParseFile_FileTooLarge, ParseFile_Count, }; @@ -74,7 +75,7 @@ struct ImportedFile { }; struct AstFile { - isize id; + i32 id; AstPackage * pkg; Scope * scope; |