| 42 | } |
| 43 | |
| 44 | void operator()() |
| 45 | { |
| 46 | std::unique_lock<std::mutex> lk(mutex); |
| 47 | triggers++; |
| 48 | cv.notify_all(); |
| 49 | } |
| 50 | }; |
| 51 | |
| 52 | TEST(DispatchQueue, Init) { DispatchQueue queue(false); } |
nothing calls this directly
no outgoing calls
no test coverage detected