| 55 | } |
| 56 | |
| 57 | CBool operator>(const UTask& task) const { |
| 58 | return priority_ < task.priority_; // 新加入的,放到后面 |
| 59 | } |
| 60 | |
| 61 | CBool operator<(const UTask& task) const { |
| 62 | return priority_ >= task.priority_; |
nothing calls this directly
no outgoing calls
no test coverage detected