diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-19 04:44:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-19 04:44:44 +0200 |
commit | b10905c8ae7e1edf81a62d6e9b4c98dffe3af2b6 (patch) | |
tree | 6b5e8546f8268c171e28dcd1faf5b1e819164aab /src/common | |
parent | Merge pull request #688 from lioncash/comma (diff) | |
parent | externals: update fmt to version 5.1.0 (diff) | |
download | yuzu-b10905c8ae7e1edf81a62d6e9b4c98dffe3af2b6.tar yuzu-b10905c8ae7e1edf81a62d6e9b4c98dffe3af2b6.tar.gz yuzu-b10905c8ae7e1edf81a62d6e9b4c98dffe3af2b6.tar.bz2 yuzu-b10905c8ae7e1edf81a62d6e9b4c98dffe3af2b6.tar.lz yuzu-b10905c8ae7e1edf81a62d6e9b4c98dffe3af2b6.tar.xz yuzu-b10905c8ae7e1edf81a62d6e9b4c98dffe3af2b6.tar.zst yuzu-b10905c8ae7e1edf81a62d6e9b4c98dffe3af2b6.zip |
Diffstat (limited to 'src/common')
-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 |