Skip to content

Poco::format compile error c++23 #4966

@micheleselea

Description

@micheleselea

If you try to compile Foundation with c++23 you will get an error here

std::string format(const std::string& fmt, const Any& value)
{
	std::string result;
	format(result, fmt, value);
	return result;
}

void format(std::string& result, const char *fmt, const std::vector<Any>& values)
{
	format(result, std::string(fmt), values);  <----error here for more than one instance of overloaded match arguments
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions