| 277 | } |
| 278 | } |
| 279 | void ChannelInternal_::EnqueueEntry(Entry&& e) |
| 280 | { |
| 281 | Queue_(this).enqueue(std::move(e)); |
| 282 | } |
| 283 | void ChannelInternal_::EnqueueEntry(const Entry& e) |
| 284 | { |
| 285 | Queue_(this).enqueue(e); |
nothing calls this directly
no outgoing calls
no test coverage detected