mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Fix parentheses
This commit is contained in:
parent
f4a16d7502
commit
ff4c77c0e8
1 changed files with 1 additions and 1 deletions
|
@ -1072,7 +1072,7 @@ static std::vector<TypeId> parseFormatString(TypeChecker& typechecker, const cha
|
|||
continue;
|
||||
|
||||
// we just ignore all characters (including flags/precision) up until first alphabetic character
|
||||
while (i < size && !(data[i] > 0 && (isalpha(data[i])) || data[i] == '*'))
|
||||
while (i < size && !(data[i] > 0 && (isalpha(data[i]) || data[i] == '*')))
|
||||
i++;
|
||||
|
||||
if (i == size)
|
||||
|
|
Loading…
Add table
Reference in a new issue