| 374 | uint32_t v, vt, vn; |
| 375 | |
| 376 | bool operator == (const VertexKey& rhs) const |
| 377 | { |
| 378 | return v == rhs.v && vt == rhs.vt && vn == rhs.vn; |
| 379 | } |
| 380 | |
| 381 | bool operator < (const VertexKey& rhs) const |
| 382 | { |
nothing calls this directly
no outgoing calls
no test coverage detected