| 96 | } |
| 97 | |
| 98 | bool operator< (AlignedBox const& box) const |
| 99 | { |
| 100 | if (min < box.min) |
| 101 | { |
| 102 | return true; |
| 103 | } |
| 104 | |
| 105 | if (min > box.min) |
| 106 | { |
| 107 | return false; |
| 108 | } |
| 109 | |
| 110 | return max < box.max; |
| 111 | } |
| 112 | |
| 113 | bool operator<=(AlignedBox const& box) const |
| 114 | { |
no outgoing calls
no test coverage detected