Use unknown type instead

This commit is contained in:
Kampfkarren 2022-08-02 22:59:29 -07:00
parent 08165396eb
commit e1d8f3acd3

View file

@ -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