diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-18 23:33:45 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-18 23:46:17 +0200 |
commit | f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9 (patch) | |
tree | 113f5e17cd87b43b1f3840ac3cb75c36759bb431 /src/common/logging/log.h | |
parent | Merge pull request #681 from lioncash/const (diff) | |
download | yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar.gz yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar.bz2 yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar.lz yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar.xz yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar.zst yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/logging/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
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> void FmtLogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num, const char* function, const char* format, const Args&... args) { FmtLogMessageImpl(log_class, log_level, filename, line_num, function, format, - fmt::make_args(args...)); + fmt::make_format_args(args...)); } } // namespace Log |