Apparently Windows does not handle 'long' the same as Unix.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-08-18 10:30:58 +02:00
parent 86d6d5a9cb
commit 2d4d3d8856
12 changed files with 37 additions and 37 deletions

View File

@@ -154,7 +154,7 @@ namespace Porygon::Parser {
}
Token *Lexer::LexNumber(char16_t c) {
long int_value = CharToInt(c);
int64_t int_value = CharToInt(c);
double float_value = 0;
short decimal_index = 0;
bool has_point = false;