| 13 | // *********************************************************************** |
| 14 | |
| 15 | struct SortToOriginalOrder { |
| 16 | bool operator()(const Rect& a, const Rect& b) { |
| 17 | return a.ordering > b.ordering; |
| 18 | } |
| 19 | }; |
| 20 | |
| 21 | // *********************************************************************** |
| 22 |
no outgoing calls
no test coverage detected