diff options
| author | Alexander Taylor <alex@vector35.com> | 2025-05-27 13:47:26 -0400 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2025-06-25 18:36:48 -0400 |
| commit | 0838242066437a04e3aa3417cab703cc071adde6 (patch) | |
| tree | 281a5f496855aa4f7e3f342153c4f45c93c3d1cd /ui | |
| parent | 0db1435ce97fcc62a1676a819ac33e80dd3a010a (diff) | |
Fix cxx20 compiler errors.
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -118,7 +118,7 @@ namespace fmt template<typename... T> QString qformat(format_string<T...> fmt, T&&... args) { - return QString::fromStdString(vformat(fmt, make_format_args(args...))); + return QString::fromStdString(vformat(fmt, fmt::make_format_args(args...))); } } |
