mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +08:00
fix in move log_msg
This commit is contained in:
parent
2278e9230f
commit
f41d989bf0
@ -48,9 +48,7 @@ struct log_msg
|
||||
level(other.level),
|
||||
time(other.time),
|
||||
tm_time(other.tm_time)
|
||||
|
||||
{
|
||||
//fmt::MemoryWriter does not allow copy ctor}
|
||||
{
|
||||
raw.write(other.raw.data(), other.raw.size());
|
||||
formatted.write(other.formatted.data(), other.formatted.size());
|
||||
}
|
||||
@ -63,6 +61,7 @@ struct log_msg
|
||||
raw(std::move(other.raw)),
|
||||
formatted(std::move(other.formatted))
|
||||
{
|
||||
other.clear();
|
||||
}
|
||||
|
||||
log_msg& operator=(log_msg&& other)
|
||||
@ -76,6 +75,7 @@ struct log_msg
|
||||
tm_time = other.tm_time;
|
||||
raw = std::move(other.raw);
|
||||
formatted = std::move(other.formatted);
|
||||
other.clear();
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -83,6 +83,7 @@ struct log_msg
|
||||
|
||||
void clear()
|
||||
{
|
||||
level = level::OFF;
|
||||
raw.clear();
|
||||
formatted.clear();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user