Commit 4720b703 authored by gabime's avatar gabime

Fixed clang-tidy warnings

parent cd8e15dc
......@@ -146,6 +146,9 @@ public:
}
}
thread_pool(const thread_pool&) = delete;
thread_pool &operator=(thread_pool &&) = delete ;
void post_log(async_logger_ptr &&worker_ptr, const details::log_msg &msg, async_overflow_policy overflow_policy)
{
async_msg async_m(std::forward<async_logger_ptr>(worker_ptr), async_msg_type::log, msg);
......
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