Merge branch 'develop' into errors-more-cleanup

This commit is contained in:
Axel Kohlmeyer
2025-03-23 16:01:00 -04:00
18 changed files with 201 additions and 341 deletions

View File

@ -272,11 +272,7 @@ void utils::print(FILE *fp, const std::string &mesg)
void utils::fmtargs_print(FILE *fp, fmt::string_view format, fmt::format_args args)
{
try {
print(fp, fmt::vformat(format, args));
} catch (fmt::format_error &) {
; // do nothing
}
print(fp, fmt::vformat(format, args));
}
std::string utils::errorurl(int errorcode)