Sprout/sprout/complex/hash.hpp

39 lines
846 B
C++
Raw Normal View History

2012-08-28 16:16:12 +00:00
#ifndef SPROUT_COMPLEX_HASH_HPP
#define SPROUT_COMPLEX_HASH_HPP
#include <cstddef>
#include <functional>
2012-08-28 16:16:12 +00:00
#include <sprout/config.hpp>
#include <sprout/complex/complex.hpp>
2013-02-04 09:42:39 +00:00
#include <sprout/functional/hash.hpp>
2012-08-28 16:16:12 +00:00
namespace sprout {
//
// hash_value
//
template<typename T>
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR std::size_t
hash_value(sprout::complex<T> const& v) {
2012-08-28 16:16:12 +00:00
return sprout::hash_values(v.real(), v.imag());
}
} // 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 T>
struct hash<sprout::complex<T> >
: public sprout::hash<sprout::complex<T> >
{};
2013-04-21 04:30:30 +00:00
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
} // namespace std
2012-08-28 16:16:12 +00:00
#endif // #ifndef SPROUT_COMPLEX_HASH_HPP