2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00: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)
|
|
|
|
=============================================================================*/
|
2013-02-04 01:24:23 +00:00
|
|
|
#ifndef SPROUT_OPTIONAL_HASH_HPP
|
|
|
|
#define SPROUT_OPTIONAL_HASH_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
2013-02-18 17:49:10 +00:00
|
|
|
#include <functional>
|
2013-02-04 01:24:23 +00:00
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/optional/optional.hpp>
|
2013-02-04 09:42:39 +00:00
|
|
|
#include <sprout/functional/hash.hpp>
|
2013-02-04 01:24:23 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// hash_value
|
|
|
|
//
|
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
hash_value(sprout::optional<T> const& v) {
|
|
|
|
return v.is_initialized() ? sprout::to_hash(*v)
|
|
|
|
: 0
|
|
|
|
;
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
2013-02-06 18:11:17 +00:00
|
|
|
namespace std {
|
2013-04-21 04:30:30 +00:00
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic push
|
|
|
|
# pragma clang diagnostic ignored "-Wmismatched-tags"
|
|
|
|
#endif
|
2013-02-06 18:11:17 +00:00
|
|
|
//
|
|
|
|
// hash
|
|
|
|
//
|
|
|
|
template<typename T>
|
|
|
|
struct hash<sprout::optional<T> >
|
|
|
|
: public sprout::hash<sprout::optional<T> >
|
|
|
|
{};
|
2013-04-21 04:30:30 +00:00
|
|
|
#if defined(__clang__)
|
|
|
|
# pragma clang diagnostic pop
|
|
|
|
#endif
|
2013-02-06 18:11:17 +00:00
|
|
|
} // namespace std
|
|
|
|
|
2013-02-04 01:24:23 +00:00
|
|
|
#endif // #ifndef SPROUT_OPTIONAL_HASH_HPP
|