spdlog: fix compilation with fmtlib 8
Small API change. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
82edfeb1d0
commit
e444e5bd70
1 changed files with 11 additions and 0 deletions
11
libs/spdlog/patches/010-fmt8.patch
Normal file
11
libs/spdlog/patches/010-fmt8.patch
Normal file
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in a new issue