diff options
Diffstat (limited to '')
| m--------- | externals/fmt | 0 | ||||
| -rw-r--r-- | src/common/logging/log.h | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/externals/fmt b/externals/fmt | |||
| Subproject 5859e58ba17073cf1c16536205450528f3530df | Subproject c2ce7e4f07f7b34b2c7bbd0a4d0798b1d7007f4 | ||
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index e96c90e16..e7115933f 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -103,7 +103,7 @@ template <typename... Args> | |||
| 103 | void FmtLogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num, | 103 | void FmtLogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num, |
| 104 | const char* function, const char* format, const Args&... args) { | 104 | const char* function, const char* format, const Args&... args) { |
| 105 | FmtLogMessageImpl(log_class, log_level, filename, line_num, function, format, | 105 | FmtLogMessageImpl(log_class, log_level, filename, line_num, function, format, |
| 106 | fmt::make_args(args...)); | 106 | fmt::make_format_args(args...)); |
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | } // namespace Log | 109 | } // namespace Log |