Commit 8c55ee1a authored by Gabi Melman's avatar Gabi Melman

Update async_log_helper.h

Fixed shadow warning in gcc
parent 9ab524b3
......@@ -61,7 +61,7 @@ async_msg(async_msg&& other) SPDLOG_NOEXCEPT:
msg_type(std::move(other.msg_type))
{}
async_msg(async_msg_type msg_type) :msg_type(msg_type)
async_msg(async_msg_type m_type) :msg_type(m_type)
{};
async_msg& operator=(async_msg&& other) SPDLOG_NOEXCEPT
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment