astyle
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -61,7 +61,7 @@ struct log_msg
|
||||
raw(std::move(other.raw)),
|
||||
formatted(std::move(other.formatted))
|
||||
{
|
||||
other.clear();
|
||||
other.clear();
|
||||
}
|
||||
|
||||
log_msg& operator=(log_msg&& other)
|
||||
@@ -75,7 +75,7 @@ struct log_msg
|
||||
tm_time = other.tm_time;
|
||||
raw = std::move(other.raw);
|
||||
formatted = std::move(other.formatted);
|
||||
other.clear();
|
||||
other.clear();
|
||||
return *this;
|
||||
}
|
||||
|
||||
@@ -83,7 +83,7 @@ struct log_msg
|
||||
|
||||
void clear()
|
||||
{
|
||||
level = level::OFF;
|
||||
level = level::OFF;
|
||||
raw.clear();
|
||||
formatted.clear();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user