Removed raw-enums

This commit is contained in:
Pasha Bibko
2025-08-24 21:17:50 +01:00
parent 2427d67269
commit 025a1ee0b4
9 changed files with 315 additions and 326 deletions

View File

@@ -38,7 +38,7 @@ namespace PashaBibko::LXC::Parser
}
// Checks if the tokens are the correct types //
inline bool Expect(const std::span<const Lexer::Token::TokenType>& tokens) const
inline bool Expect(const std::span<const Lexer::TokenType>& tokens) const
{
for (int i = 0; i < tokens.size(); i++)
{