Fixed unused variable warning

This commit is contained in:
gabime 2017-10-12 19:59:14 +03:00
parent 19264b8399
commit 4a159ad66d
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ class pid_formatter SPDLOG_FINAL:public flag_formatter
// message counter formatter
class i_formatter SPDLOG_FINAL :public flag_formatter
{
void format(details::log_msg& msg, const std::tm& tm_time) override
void format(details::log_msg& msg, const std::tm&) override
{
msg.formatted << fmt::pad(msg.msg_id, 6, '0');
}