| 84 | }; |
| 85 | |
| 86 | struct SpatialHasher |
| 87 | { |
| 88 | std::size_t operator()(HashKey const& k) const |
| 89 | { |
| 90 | return |
| 91 | 73856093 * k.k[0] ^ |
| 92 | 19349663 * k.k[1] ^ |
| 93 | 83492791 * k.k[2]; |
| 94 | } |
| 95 | }; |
| 96 | |
| 97 | class Spinlock |
| 98 | { |
nothing calls this directly
no outgoing calls
no test coverage detected