| 65 | struct QuadPointRef |
| 66 | { |
| 67 | QuadPointRef(const Point& point, std::size_t pbIndex) |
| 68 | : point(point) |
| 69 | , pbIndex(pbIndex) |
| 70 | { } |
| 71 | |
| 72 | const Point point; |
| 73 | const std::size_t pbIndex; |
nothing calls this directly
no outgoing calls
no test coverage detected