2013-08-08 18:54:33 +09:00
|
|
|
/*=============================================================================
|
2014-01-08 16:48:12 +09:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 18:54:33 +09:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-06-22 19:14:21 +09:00
|
|
|
#ifndef SPROUT_PIT_HASH_HPP
|
|
|
|
#define SPROUT_PIT_HASH_HPP
|
2012-06-21 13:34:26 +09:00
|
|
|
|
2012-06-22 19:14:21 +09:00
|
|
|
#include <cstddef>
|
2013-02-19 02:49:10 +09:00
|
|
|
#include <functional>
|
2012-06-21 13:34:26 +09:00
|
|
|
#include <sprout/config.hpp>
|
2012-06-22 19:14:21 +09:00
|
|
|
#include <sprout/pit/pit.hpp>
|
2013-02-04 18:42:39 +09:00
|
|
|
#include <sprout/functional/hash.hpp>
|
2012-06-21 13:34:26 +09:00
|
|
|
|
|
|
|
namespace sprout {
|
2013-02-04 10:24:23 +09:00
|
|
|
//
|
|
|
|
// hash_value
|
|
|
|
//
|
2012-06-21 13:34:26 +09:00
|
|
|
template<typename Container>
|
2012-10-06 00:58:56 +09:00
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_value(sprout::pit<Container> const& v) {
|
2012-09-21 15:43:30 +09:00
|
|
|
return sprout::to_hash(v.elem);
|
2012-06-21 13:34:26 +09:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
2013-02-07 03:11:17 +09:00
|
|
|
namespace std {
|
2013-04-21 13:30:30 +09:00
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic push
|
|
|
|
# pragma clang diagnostic ignored "-Wmismatched-tags"
|
|
|
|
#endif
|
2013-02-07 03:11:17 +09:00
|
|
|
//
|
|
|
|
// hash
|
|
|
|
//
|
|
|
|
template<typename Container>
|
|
|
|
struct hash<sprout::pit<Container> >
|
|
|
|
: public sprout::hash<sprout::pit<Container> >
|
|
|
|
{};
|
2013-04-21 13:30:30 +09:00
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic pop
|
|
|
|
#endif
|
2013-02-07 03:11:17 +09:00
|
|
|
} // namespace std
|
|
|
|
|
2012-06-22 19:14:21 +09:00
|
|
|
#endif // #ifndef SPROUT_PIT_HASH_HPP
|