Sprout/sprout/pit/hash.hpp

39 lines
838 B
C++
Raw Normal View History

#ifndef SPROUT_PIT_HASH_HPP
#define SPROUT_PIT_HASH_HPP
2012-06-21 04:34:26 +00:00
#include <cstddef>
#include <functional>
2012-06-21 04:34:26 +00:00
#include <sprout/config.hpp>
#include <sprout/pit/pit.hpp>
2013-02-04 09:42:39 +00:00
#include <sprout/functional/hash.hpp>
2012-06-21 04:34:26 +00:00
namespace sprout {
//
// hash_value
//
2012-06-21 04:34:26 +00:00
template<typename Container>
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::pit<Container> const& v) {
return sprout::to_hash(v.elem);
2012-06-21 04:34:26 +00:00
}
} // namespace sprout
namespace std {
2013-04-21 04:30:30 +00:00
#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wmismatched-tags"
#endif
//
// hash
//
template<typename Container>
struct hash<sprout::pit<Container> >
: public sprout::hash<sprout::pit<Container> >
{};
2013-04-21 04:30:30 +00:00
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
} // namespace std
#endif // #ifndef SPROUT_PIT_HASH_HPP