| 215 | : box(b), points(p), results(r) {} |
| 216 | |
| 217 | void execute(size_t start, size_t end) |
| 218 | { |
| 219 | for(size_t p = start; p < end; ++p) |
| 220 | results[p] = box.intersects(points[p]); |
| 221 | } |
| 222 | }; |
| 223 | |
| 224 | template <class T> |
nothing calls this directly
no outgoing calls
no test coverage detected