Skip to content

Commit a4fcd21

Browse files
committed
fix: fixed clang formating in enum
1 parent ca1cb41 commit a4fcd21

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lib/lexer/tokens/TokenType.hpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33

44
#include <string_view>
55

6-
enum class TokenType {
7-
IDENT, KEYWORD, INT, FLOAT,
8-
STRING, CHAR, BOOL, OPERATOR,
9-
PUNCT, NEWLINE, COMMENT, EOF_T
10-
};
6+
enum class TokenType { IDENT, KEYWORD, INT, FLOAT, STRING, CHAR, BOOL, OPERATOR, PUNCT, NEWLINE, COMMENT, EOF_T };
117

128
inline std::string_view to_string_view(TokenType token_type) {
139
switch (token_type) {

0 commit comments

Comments
 (0)