| 11 | namespace CompactNSearch |
| 12 | { |
| 13 | struct PointID |
| 14 | { |
| 15 | unsigned int point_set_id; |
| 16 | unsigned int point_id; |
| 17 | |
| 18 | bool operator==(PointID const& other) const |
| 19 | { |
| 20 | return point_id == other.point_id && point_set_id == other.point_set_id; |
| 21 | } |
| 22 | }; |
| 23 | |
| 24 | struct HashKey |
| 25 | { |
nothing calls this directly
no outgoing calls
no test coverage detected