Files
boost_unordered/test/unordered/hash_is_avalanching_test.cpp

49 lines
973 B
C++
Raw Permalink Normal View History

2022-10-30 12:58:57 +02:00
// Copyright 2022 Peter Dimov
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
2022-10-31 13:27:09 +02:00
// an imitation of a third-party header specializing hash_is_avalanching
// (boost/container_hash/hash.hpp is an example doing that)
#include <boost/type_traits/integral_constant.hpp>
struct X3
{
};
namespace boost
{
namespace unordered
{
template<class T> struct hash_is_avalanching;
template<> struct hash_is_avalanching< ::X3 >: boost::true_type {};
} // namespace unordered
} // namespace boost
//
2022-10-30 12:58:57 +02:00
#include <boost/unordered/hash_traits.hpp>
#include <boost/core/lightweight_test_trait.hpp>
struct X1
{
};
struct X2
{
typedef void is_avalanching;
};
int main()
{
using boost::unordered::hash_is_avalanching;
BOOST_TEST_TRAIT_FALSE((hash_is_avalanching<X1>));
BOOST_TEST_TRAIT_TRUE((hash_is_avalanching<X2>));
2022-10-31 13:27:09 +02:00
BOOST_TEST_TRAIT_TRUE((hash_is_avalanching<X3>));
2022-10-30 12:58:57 +02:00
return boost::report_errors();
}