| 3055 | |
| 3056 | template<typename U> |
| 3057 | static inline void destroy(U* p) |
| 3058 | { |
| 3059 | if (p != nullptr) { |
| 3060 | p->~U(); |
| 3061 | } |
| 3062 | (Traits::free)(p); |
| 3063 | } |
| 3064 | |
| 3065 | private: |
| 3066 | std::atomic<ProducerBase*> producerListTail; |
no outgoing calls
no test coverage detected