Fixed analyzer warnings

This commit is contained in:
gabime 2024-12-07 18:49:08 +02:00
parent cfef4069b6
commit 63507e5de6

View File

@ -34,6 +34,7 @@ async_log_msg::async_log_msg(async_log_msg &&other) noexcept
}
async_log_msg &async_log_msg::operator=(const async_log_msg &other) {
if (this == &other) return *this;
log_msg::operator=(other);
msg_type_ = other.msg_type_;
buffer_.clear();
@ -43,6 +44,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 {
if (this == &other) return *this;
log_msg::operator=(other);
msg_type_ = other.msg_type_;
buffer_ = std::move(other.buffer_);