Changed forward<log_msg> to std::move(log_msg) in thread pool
This commit is contained in:
parent
3b009f5aa6
commit
1f4cae4bf7
@ -151,7 +151,7 @@ public:
|
|||||||
|
|
||||||
void post_log(async_logger_ptr &&worker_ptr, details::log_msg &&msg, async_overflow_policy overflow_policy)
|
void post_log(async_logger_ptr &&worker_ptr, details::log_msg &&msg, async_overflow_policy overflow_policy)
|
||||||
{
|
{
|
||||||
async_msg async_m(std::move(worker_ptr), async_msg_type::log, std::forward<log_msg>(msg));
|
async_msg async_m(std::move(worker_ptr), async_msg_type::log, std::move(msg));
|
||||||
post_async_msg_(std::move(async_m), overflow_policy);
|
post_async_msg_(std::move(async_m), overflow_policy);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user