| 5 | // *********************************************************************** |
| 6 | |
| 7 | struct SortByHeight { |
| 8 | bool operator()(const Rect& a, const Rect& b) { |
| 9 | return a.h < b.h; |
| 10 | } |
| 11 | }; |
| 12 | |
| 13 | // *********************************************************************** |
| 14 |
no outgoing calls
no test coverage detected