mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-12 17:00:25 +08:00
Fixed analyzer warnings
This commit is contained in:
parent
5ec87952ff
commit
cfef4069b6
@ -43,7 +43,7 @@ async_log_msg &async_log_msg::operator=(const async_log_msg &other) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async_log_msg &async_log_msg::operator=(async_log_msg &&other) noexcept {
|
async_log_msg &async_log_msg::operator=(async_log_msg &&other) noexcept {
|
||||||
log_msg::operator=(std::forward<async_log_msg>(other));
|
log_msg::operator=(other);
|
||||||
msg_type_ = other.msg_type_;
|
msg_type_ = other.msg_type_;
|
||||||
buffer_ = std::move(other.buffer_);
|
buffer_ = std::move(other.buffer_);
|
||||||
update_string_views();
|
update_string_views();
|
||||||
|
Loading…
Reference in New Issue
Block a user