From 37cd70729488389b590dd8bf5f2137e8b08cf217 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Mon, 3 Sep 2018 19:08:57 +0300 Subject: [PATCH] Fix issue #819 --- include/spdlog/details/thread_pool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/spdlog/details/thread_pool.h b/include/spdlog/details/thread_pool.h index 29f5d9d4..b7eb6caa 100644 --- a/include/spdlog/details/thread_pool.h +++ b/include/spdlog/details/thread_pool.h @@ -64,8 +64,8 @@ struct async_msg return *this; } #else // (_MSC_VER) && _MSC_VER <= 1800 - async_msg(async_msg &&other) = default; - async_msg &operator=(async_msg &&other) = default; + async_msg(async_msg &&) = default; + async_msg &operator=(async_msg &&) = default; #endif // construct from log_msg with given type