| 670 | explicit ProducerToken(BlockingConcurrentQueue<T, Traits>& queue); |
| 671 | |
| 672 | ProducerToken(ProducerToken&& other) MOODYCAMEL_NOEXCEPT |
| 673 | : producer(other.producer) |
| 674 | { |
| 675 | other.producer = nullptr; |
| 676 | if (producer != nullptr) { |
| 677 | producer->token = this; |
| 678 | } |
| 679 | } |
| 680 | |
| 681 | inline ProducerToken& operator=(ProducerToken&& other) MOODYCAMEL_NOEXCEPT |
| 682 | { |
nothing calls this directly
no outgoing calls
no test coverage detected