Unverified Commit 216f9056 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Fix log msg buffer operator=

parent c368500e
......@@ -36,6 +36,7 @@ namespace details {
SPDLOG_INLINE log_msg_buffer &log_msg_buffer::operator=(const log_msg_buffer &other)
{
log_msg::operator=(other);
buffe.clear();
buffer.append(other.buffer.data(), other.buffer.data() + other.buffer.size());
update_string_views();
return *this;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment