mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-06 02:34:05 +00:00
Fix tokenizing for %%
This commit is contained in:
@@ -1065,7 +1065,7 @@ void tokenizer_get_token(Tokenizer *t, Token *token) {
|
||||
token->kind = Token_Mod;
|
||||
if (t->curr_rune == '=') {
|
||||
token->kind = Token_ModEq;
|
||||
} else if (t->curr_rune == '&') {
|
||||
} else if (t->curr_rune == '%') {
|
||||
token->kind = Token_ModMod;
|
||||
advance_to_next_rune(t);
|
||||
if (t->curr_rune == '=') {
|
||||
|
||||
Reference in New Issue
Block a user