| 3662 | |
| 3663 | template<typename U> |
| 3664 | static inline void destroy(U* p) |
| 3665 | { |
| 3666 | if (p != nullptr) |
| 3667 | p->~U(); |
| 3668 | aligned_free<U>(p); |
| 3669 | } |
| 3670 | |
| 3671 | private: |
| 3672 | std::atomic<ProducerBase*> producerListTail; |
no outgoing calls
no test coverage detected