| 38 | } |
| 39 | |
| 40 | bool operator==(HashKey const& other) const |
| 41 | { |
| 42 | return |
| 43 | k[0] == other.k[0] && |
| 44 | k[1] == other.k[1] && |
| 45 | k[2] == other.k[2]; |
| 46 | } |
| 47 | |
| 48 | bool operator!=(HashKey const& other) const |
| 49 | { |
nothing calls this directly
no outgoing calls
no test coverage detected