mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Use unknown type instead
This commit is contained in:
parent
08165396eb
commit
e1d8f3acd3
1 changed files with 1 additions and 1 deletions
|
@ -1081,7 +1081,7 @@ static std::vector<TypeId> parseFormatString(TypeChecker& typechecker, const cha
|
|||
if (data[i] == 'q' || data[i] == 's')
|
||||
result.push_back(typechecker.stringType);
|
||||
else if (data[i] == '*')
|
||||
result.push_back(typechecker.anyType);
|
||||
result.push_back(typechecker.unknownType);
|
||||
else if (strchr(options, data[i]))
|
||||
result.push_back(typechecker.numberType);
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue