| 453 | }; |
| 454 | |
| 455 | inline bool cmp_simple_event_by_duration_asc(const Simple_Event &a, const Simple_Event &b) |
| 456 | { |
| 457 | return a.duration < b.duration; |
| 458 | } |
| 459 | inline bool cmp_simple_event_by_start_time_asc(const Simple_Event &a, const Simple_Event &b) |
| 460 | { |
| 461 | return a.start_time < b.start_time; |
nothing calls this directly
no outgoing calls
no test coverage detected