| 2406 | struct ImplicitProducer : public ProducerBase |
| 2407 | { |
| 2408 | ImplicitProducer(ConcurrentQueue* parent_) : |
| 2409 | ProducerBase(parent_, false), |
| 2410 | nextBlockIndexCapacity(IMPLICIT_INITIAL_INDEX_SIZE), |
| 2411 | blockIndex(nullptr) |
| 2412 | { |
| 2413 | new_block_index(); |
| 2414 | } |
| 2415 | |
| 2416 | ~ImplicitProducer() |
| 2417 | { |
nothing calls this directly
no test coverage detected