| 126 | |
| 127 | struct DenseMapInfoForUsr { |
| 128 | static inline Usr getEmptyKey() { return 0; } |
| 129 | static inline Usr getTombstoneKey() { return ~0ULL; } |
| 130 | static unsigned getHashValue(Usr w) { return w; } |
| 131 | static bool isEqual(Usr l, Usr r) { return l == r; } |
nothing calls this directly
no outgoing calls
no test coverage detected