| 1344 | |
| 1345 | template<AllocationMode canAlloc, typename U> |
| 1346 | inline bool inner_enqueue(producer_token_t const& token, U&& element) |
| 1347 | { |
| 1348 | return static_cast<ExplicitProducer*>(token.producer)->ConcurrentQueue::ExplicitProducer::template enqueue<canAlloc>(std::forward<U>(element)); |
| 1349 | } |
| 1350 | |
| 1351 | template<AllocationMode canAlloc, typename U> |
| 1352 | inline bool inner_enqueue(U&& element) |
nothing calls this directly
no test coverage detected