From aa4b71d0ced9c5fea17d2379a88252f944f5d6dc Mon Sep 17 00:00:00 2001
From: BreadFish64 <mohror64@gmail.com>
Date: Thu, 26 Jul 2018 16:31:03 -0500
Subject: [PATCH] update fmt to latest stable release

5.1.0
fixes a multitude of errors on MSVC
---
 src/common/logging/log.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index a51399dee..6c0816abc 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -110,7 +110,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