From 0838242066437a04e3aa3417cab703cc071adde6 Mon Sep 17 00:00:00 2001 From: Alexander Taylor Date: Tue, 27 May 2025 13:47:26 -0400 Subject: Fix cxx20 compiler errors. --- ui/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui') diff --git a/ui/util.h b/ui/util.h index 1037528e..5f86014b 100644 --- a/ui/util.h +++ b/ui/util.h @@ -118,7 +118,7 @@ namespace fmt template QString qformat(format_string fmt, T&&... args) { - return QString::fromStdString(vformat(fmt, make_format_args(args...))); + return QString::fromStdString(vformat(fmt, fmt::make_format_args(args...))); } } -- cgit v1.3.1