| 1287 | |
| 1288 | template<AllocationMode canAlloc, typename U> |
| 1289 | inline bool inner_enqueue(producer_token_t const &token, U &&element) { |
| 1290 | return static_cast<ExplicitProducer *>(token.producer)->ConcurrentQueue::ExplicitProducer::template enqueue<canAlloc>( |
| 1291 | std::forward<U>(element)); |
| 1292 | } |
| 1293 | |
| 1294 | template<AllocationMode canAlloc, typename U> |
| 1295 | inline bool inner_enqueue(U &&element) { |
nothing calls this directly
no test coverage detected