Switch to C++20

This commit is contained in:
Georg Hagen
2024-06-21 11:57:53 +02:00
parent ca3985cd68
commit 299040ecaf
7 changed files with 28 additions and 12 deletions

View File

@@ -171,7 +171,7 @@ template<> struct fmt::formatter<OpenVulkano::ByteSize>
template<typename FormatContext> auto format(const OpenVulkano::ByteSize& bs, FormatContext& ctx)
{
return format_to(ctx.out(), "{}", bs.Format());
return fmt::format_to(ctx.out(), "{}", bs.Format());
}
};
#endif