diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-18 17:33:45 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-18 17:46:17 -0400 |
commit | f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9 (patch) | |
tree | 113f5e17cd87b43b1f3840ac3cb75c36759bb431 /src/common/logging/log.h | |
parent | 3d1e8f750cb7ca4f06a04ed4b1dca61d11b94197 (diff) |
externals: update fmt to version 5.1.0
Previously, we were on 4.1.0, which was a major version behind.
Diffstat (limited to 'src/common/logging/log.h')
-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 e96c90e16b..e7115933f3 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 |