| 140 | }; |
| 141 | |
| 142 | inline void swap(SORTP** a, SORTP** b) |
| 143 | { |
| 144 | ((SORTP***) (*a))[BACK_OFFSET] = b; |
| 145 | ((SORTP***) (*b))[BACK_OFFSET] = a; |
| 146 | SORTP* temp = *a; |
| 147 | *a = *b; |
| 148 | *b = temp; |
| 149 | } |
| 150 | } // namespace |
| 151 | |
| 152 |
no outgoing calls
no test coverage detected