| 6 | struct Line { |
| 7 | int x, ymin, ymax, ty ; |
| 8 | Line() {} |
| 9 | Line(int _x, int _ym, int _ymx, int _ty) { x = _x ; ymin = _ym ; ymax = _ymx ; ty = _ty ; } |
| 10 | bool operator < (const Line &e) const { return x < e.x ; } |
| 11 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected