| 1301 | |
| 1302 | template<AllocationMode canAlloc, typename It> |
| 1303 | inline bool inner_enqueue_bulk(producer_token_t const &token, It itemFirst, size_t count) { |
| 1304 | return static_cast<ExplicitProducer *>(token.producer)->ConcurrentQueue::ExplicitProducer::template enqueue_bulk<canAlloc>( |
| 1305 | itemFirst, count); |
| 1306 | } |
| 1307 | |
| 1308 | template<AllocationMode canAlloc, typename It> |
| 1309 | inline bool inner_enqueue_bulk(It itemFirst, size_t count) { |
nothing calls this directly
no test coverage detected