| 10 | namespace { |
| 11 | |
| 12 | size_t hash_pair_combine(size_t x, size_t y) { |
| 13 | return y + 0x9e3779b9 + (x << 6) + (x >> 2); |
| 14 | } |
| 15 | |
| 16 | //! stupid committee has no pair hash. Let's do it for them |
| 17 | struct pairhash { |
no outgoing calls
no test coverage detected