| 1357 | |
| 1358 | template<AllocationMode canAlloc, typename It> |
| 1359 | inline bool inner_enqueue_bulk(producer_token_t const& token, It itemFirst, size_t count) |
| 1360 | { |
| 1361 | return static_cast<ExplicitProducer*>(token.producer)->ConcurrentQueue::ExplicitProducer::template enqueue_bulk<canAlloc>(itemFirst, count); |
| 1362 | } |
| 1363 | |
| 1364 | template<AllocationMode canAlloc, typename It> |
| 1365 | inline bool inner_enqueue_bulk(It itemFirst, size_t count) |
nothing calls this directly
no test coverage detected