| 118 | } |
| 119 | |
| 120 | void NotifierPool::Put(unique_ptr<Notifier> ¬ifier) { |
| 121 | lock_guard<mutex> lock_guard(impl_->lock); |
| 122 | |
| 123 | if (notifier == nullptr) return; |
| 124 | impl_->notifiers.push(move(notifier)); |
| 125 | } |
| 126 | |
| 127 | |
| 128 | } //namespace comm |
nothing calls this directly
no outgoing calls
no test coverage detected