2012-07-15 12:20:56 +00:00
|
|
|
#ifndef SPROUT_UUID_HASH_HPP
|
|
|
|
#define SPROUT_UUID_HASH_HPP
|
2011-10-25 09:16:27 +00:00
|
|
|
|
2012-06-22 10:14:21 +00:00
|
|
|
#include <cstddef>
|
2011-10-25 09:16:27 +00:00
|
|
|
#include <sprout/config.hpp>
|
2012-06-22 10:14:21 +00:00
|
|
|
#include <sprout/uuid/uuid.hpp>
|
2013-02-04 09:42:39 +00:00
|
|
|
#include <sprout/functional/hash.hpp>
|
2012-06-22 10:14:21 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
2012-10-05 15:58:56 +00:00
|
|
|
//
|
|
|
|
// hash_value
|
|
|
|
//
|
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_value(sprout::uuids::uuid const& v) {
|
2013-02-04 14:48:18 +00:00
|
|
|
return sprout::hash_range(v);
|
2012-06-22 10:14:21 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
2011-10-25 09:16:27 +00:00
|
|
|
|
2013-02-06 18:11:17 +00:00
|
|
|
namespace std {
|
|
|
|
//
|
|
|
|
// hash
|
|
|
|
//
|
|
|
|
template<>
|
|
|
|
struct hash<sprout::uuids::uuid>
|
|
|
|
: public sprout::hash<sprout::uuids::uuid>
|
|
|
|
{};
|
|
|
|
} // namespace std
|
|
|
|
|
2012-07-15 12:20:56 +00:00
|
|
|
#endif // #ifndef SPROUT_UUID_HASH_HPP
|