mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-21 23:25:07 +00:00
Update threaded_queue.h (#82)
https://en.cppreference.com/w/cpp/language/fold
This commit is contained in:
parent
cff6c4714c
commit
93b5fa198c
@ -36,8 +36,7 @@ private:
|
||||
}
|
||||
|
||||
template <size_t... Is> void unlock_impl(std::index_sequence<Is...>) {
|
||||
(void)std::initializer_list<int>{
|
||||
(std::get<Is>(tuple_)->mutex_.unlock(), 0)...};
|
||||
(std::get<Is>(tuple_)->mutex_.unlock(), ...);
|
||||
}
|
||||
|
||||
std::tuple<Queue...> tuple_;
|
||||
|
Loading…
Reference in New Issue
Block a user