Support with linter and typechecker

This commit is contained in:
Kampfkarren 2022-08-02 03:46:27 -07:00
parent 9feb7eaa01
commit a1349a4c04
2 changed files with 2 additions and 2 deletions

View file

@ -1433,7 +1433,7 @@ private:
const char* checkStringFormat(const char* data, size_t size)
{
const char* flags = "-+ #0";
const char* options = "cdiouxXeEfgGqs";
const char* options = "cdiouxXeEfgGqs*";
for (size_t i = 0; i < size; ++i)
{

View file

@ -1058,7 +1058,7 @@ ConstrainedTypeVarIterator end(const ConstrainedTypeVar* ctv)
static std::vector<TypeId> parseFormatString(TypeChecker& typechecker, const char* data, size_t size)
{
const char* options = "cdiouxXeEfgGqs";
const char* options = "cdiouxXeEfgGqs*";
std::vector<TypeId> result;