From d6ad864f11e36752c47de6169f8fee4f5eef33ac Mon Sep 17 00:00:00 2001 From: Amos Bird Date: Thu, 27 Sep 2018 08:47:03 +0800 Subject: [PATCH] Update threaded_queue.h (#82) https://en.cppreference.com/w/cpp/language/fold --- src/threaded_queue.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/threaded_queue.h b/src/threaded_queue.h index c14307a3..d72f06d7 100644 --- a/src/threaded_queue.h +++ b/src/threaded_queue.h @@ -48,8 +48,7 @@ private: } template void unlock_impl(std::index_sequence) { - (void)std::initializer_list{ - (std::get(tuple_)->mutex_.unlock(), 0)...}; + (std::get(tuple_)->mutex_.unlock(), ...); } std::tuple tuple_;