Update async_log_helper.h

Fixed shadow warning in gcc
This commit is contained in:
Gabi Melman 2015-11-29 15:56:42 +02:00
parent 9ab524b355
commit 8c55ee1a55

View File

@ -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