| 26 | { |
| 27 | |
| 28 | bool PointEqualityComparator::operator()(const Point & left, const Point & right) const |
| 29 | { |
| 30 | return left.isApprox(right); |
| 31 | } |
| 32 | |
| 33 | std::size_t PointHash::operator()(const Point & point) const |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected