| 17 | namespace std |
| 18 | { |
| 19 | size_t hash<RawOutputPointer>::operator()(const RawOutputPointer &pointer) const { |
| 20 | std::size_t seed = 5764245; |
| 21 | blocksci::hash_combine(seed, pointer.hash); |
| 22 | blocksci::hash_combine(seed, pointer.outputNum); |
| 23 | return seed; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected