Hopefully fixed macos compile finally

This commit is contained in:
WerWolv
2021-01-07 21:52:03 +01:00
parent 08c802f733
commit e48c61cf27
2 changed files with 5 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
#include "helpers/utils.hpp"
#include <utility>
#include <string>
#include <variant>
@@ -193,7 +194,7 @@ namespace hex::lang {
#define KEYWORD_IF COMPONENT(Keyword, If)
#define KEYWORD_ELSE COMPONENT(Keyword, Else)
#define INTEGER hex::lang::Token::Type::Integer, hex::lang::Token::IntegerLiteral({ hex::lang::Token::ValueType::Any, 0xFFFF'FFFF'FFFF'FFFF })
#define INTEGER hex::lang::Token::Type::Integer, hex::lang::Token::IntegerLiteral(hex::lang::Token::ValueType::Any, u64(0))
#define IDENTIFIER hex::lang::Token::Type::Identifier, ""
#define OPERATOR_AT COMPONENT(Operator, AtDeclaration)