generated code update + reverting some fixes for now...

This commit is contained in:
2024-10-25 02:59:56 -04:00
parent 40a256f6c3
commit e5616c5879
9 changed files with 361 additions and 319 deletions

View File

@ -586,7 +586,7 @@ TokArray lex( StrC content )
{
s32 length = 0;
char const* scanner = entry.Data;
while ( entry.length() > length && char_is_alphanumeric( *scanner ) || *scanner == '_' )
while ( entry.length() > length && (char_is_alphanumeric( *scanner ) || *scanner == '_') )
{
scanner++;
length ++;