From 06311cc935b6c050533fa82047d520992a6e6796 Mon Sep 17 00:00:00 2001 From: Pasha Bibko <156938226+PashaBibko@users.noreply.github.com> Date: Tue, 22 Jul 2025 16:05:35 +0100 Subject: [PATCH] Fixed formatting --- Lexer/inc/Token.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Lexer/inc/Token.h b/Lexer/inc/Token.h index f6bc2c9..56f26e4 100644 --- a/Lexer/inc/Token.h +++ b/Lexer/inc/Token.h @@ -84,16 +84,16 @@ namespace LXC::Lexer // Util function calculating wether a token is of a given class // template static constexpr bool IsTypeClass(TokenType type) - { - using T = std::underlying_type_t; - return static_cast(type) & static_cast(mask); - } + { + using T = std::underlying_type_t; + return static_cast(type) & static_cast(mask); + } - template static constexpr bool IsTypeClass(Token token) - { - using T = std::underlying_type_t; - return static_cast(token.type) & static_cast(mask); - } + template static constexpr bool IsTypeClass(Token token) + { + using T = std::underlying_type_t; + return static_cast(token.type) & static_cast(mask); + } // Constructor to set the data of the token for more complex token types // Token(const LexerContext& ctx, uint32_t start, unsigned short len, TokenType _type);