| 179 | bool stopToken; |
| 180 | |
| 181 | struct Comparator { |
| 182 | bool operator()(const QueuedTask& a, const QueuedTask& b) { return a.priority < b.priority; } |
| 183 | }; |
| 184 | }; |
| 185 | |
| 186 | PriorityQueue<QueuedTask, QueuedTask::Comparator> mTaskQueue; |
nothing calls this directly
no outgoing calls
no test coverage detected