| 1720 | struct ProducerBase : public details::ConcurrentQueueProducerTypelessBase |
| 1721 | { |
| 1722 | ProducerBase(ConcurrentQueue* parent_, bool isExplicit_) : |
| 1723 | tailIndex(0), |
| 1724 | headIndex(0), |
| 1725 | dequeueOptimisticCount(0), |
| 1726 | dequeueOvercommit(0), |
| 1727 | tailBlock(nullptr), |
| 1728 | isExplicit(isExplicit_), |
| 1729 | parent(parent_) |
| 1730 | { |
| 1731 | } |
| 1732 | |
| 1733 | virtual ~ProducerBase() { } |
| 1734 |
nothing calls this directly
no outgoing calls
no test coverage detected