| 302 | |
| 303 | template <typename MutexType1, typename MutexType2> |
| 304 | int try_lock_impl(MutexType1& m1, MutexType2& m2, is_mutex_type_wrapper<true> ) |
| 305 | { |
| 306 | return ((int) detail::try_lock_internal(m1, m2)) - 1; |
| 307 | } |
| 308 | |
| 309 | template <typename Iterator> |
| 310 | Iterator try_lock_impl(Iterator begin, Iterator end, is_mutex_type_wrapper<false> ); |
no test coverage detected