From e444e5bd706b7ca90842cdce8a9694fb45fa7245 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Thu, 24 Jun 2021 01:12:33 -0700 Subject: [PATCH] spdlog: fix compilation with fmtlib 8 Small API change. Signed-off-by: Rosen Penev --- libs/spdlog/patches/010-fmt8.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 libs/spdlog/patches/010-fmt8.patch diff --git a/libs/spdlog/patches/010-fmt8.patch b/libs/spdlog/patches/010-fmt8.patch new file mode 100644 index 000000000..a9c0df59e --- /dev/null +++ b/libs/spdlog/patches/010-fmt8.patch @@ -0,0 +1,11 @@ +--- a/include/spdlog/common-inl.h ++++ b/include/spdlog/common-inl.h +@@ -60,7 +60,7 @@ SPDLOG_INLINE spdlog_ex::spdlog_ex(std:: + SPDLOG_INLINE spdlog_ex::spdlog_ex(const std::string &msg, int last_errno) + { + memory_buf_t outbuf; +- fmt::format_system_error(outbuf, last_errno, msg); ++ fmt::format_system_error(outbuf, last_errno, msg.data()); + msg_ = fmt::to_string(outbuf); + } +