| 47 | namespace std { |
| 48 | template<> struct BLOCKSCI_EXPORT hash<blocksci::ScriptAddress<blocksci::AddressType::NULL_DATA>> { |
| 49 | size_t operator()(const blocksci::ScriptAddress<blocksci::AddressType::NULL_DATA> &address) const { |
| 50 | std::size_t seed = 32847956; |
| 51 | blocksci::hash_combine(seed, static_cast<const blocksci::ScriptBase &>(address)); |
| 52 | return seed; |
| 53 | } |
| 54 | }; |
| 55 | } // namespace std |
| 56 |
nothing calls this directly
no outgoing calls
no test coverage detected