mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 10:51:04 +08:00
12 lines
392 B
Diff
12 lines
392 B
Diff
--- 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);
|
|
}
|
|
|