#ifndef STORM_STORAGE_PAIRHASH_H_ #define STORM_STORAGE_PAIRHASH_H_ #include namespace std { template <> struct hash> { std::size_t operator()(std::pair const& key) const { std::size_t seed = 0; boost::hash_combine(seed, key.first); boost::hash_combine(seed, key.second); return seed; } }; } #endif /* STORM_STORAGE_PAIRHASH_H_ */