#ifndef SPROUT_BITSET_HASH_HPP #define SPROUT_BITSET_HASH_HPP #include #include #include namespace sprout { // 20.5.3 hash support template inline SPROUT_CONSTEXPR std::size_t hash_value(sprout::bitset const& v) { return v.to_hash(); } } // namespace sprout #endif // #ifndef SPROUT_BITSET_HASH_HPP