From 2411ec16d6ecad6c16f03dbdddc17981b2f057c6 Mon Sep 17 00:00:00 2001 From: Joseph Walton-Rivers <joseph@walton-rivers.uk> Date: Sat, 25 Mar 2023 10:27:58 +0000 Subject: [PATCH] ensure the engine builds on fedora37 --- include/fggl/debug/impl/logging_fmt.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fggl/debug/impl/logging_fmt.hpp b/include/fggl/debug/impl/logging_fmt.hpp index 68ef08e..762ab3b 100644 --- a/include/fggl/debug/impl/logging_fmt.hpp +++ b/include/fggl/debug/impl/logging_fmt.hpp @@ -63,7 +63,7 @@ namespace fggl::debug { template<typename S, typename... Args> void logf(const char *file, int line, const S &format, Args &&... args) { - vlog(file, line, format, fmt::make_args_checked<Args...>(format, args...)); + vlog(file, line, format, fmt::make_format_args(format, args...)); } #define info_va(format, ...) \ -- GitLab