mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-16 00:45:48 +08:00
fix indentation
This commit is contained in:
parent
13199034f0
commit
8329d97d90
@ -57,19 +57,19 @@ class async_log_helper
|
|||||||
~async_msg() = default;
|
~async_msg() = default;
|
||||||
|
|
||||||
|
|
||||||
async_msg(async_msg&& other) SPDLOG_NOEXCEPT:
|
async_msg(async_msg&& other) SPDLOG_NOEXCEPT:
|
||||||
logger_name(std::move(other.logger_name)),
|
logger_name(std::move(other.logger_name)),
|
||||||
level(std::move(other.level)),
|
level(std::move(other.level)),
|
||||||
time(std::move(other.time)),
|
time(std::move(other.time)),
|
||||||
thread_id(other.thread_id),
|
thread_id(other.thread_id),
|
||||||
txt(std::move(other.txt)),
|
txt(std::move(other.txt)),
|
||||||
msg_type(std::move(other.msg_type))
|
msg_type(std::move(other.msg_type))
|
||||||
{}
|
{}
|
||||||
|
|
||||||
async_msg(async_msg_type m_type):
|
async_msg(async_msg_type m_type):
|
||||||
level(level::info),
|
level(level::info),
|
||||||
thread_id(0),
|
thread_id(0),
|
||||||
msg_type(m_type)
|
msg_type(m_type)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
async_msg& operator=(async_msg&& other) SPDLOG_NOEXCEPT
|
async_msg& operator=(async_msg&& other) SPDLOG_NOEXCEPT
|
||||||
|
Loading…
Reference in New Issue
Block a user