forked from boostorg/unordered
stylistic
This commit is contained in:
@ -20,16 +20,11 @@ namespace unordered{
|
|||||||
namespace detail{
|
namespace detail{
|
||||||
|
|
||||||
template<typename Hash,typename=void>
|
template<typename Hash,typename=void>
|
||||||
struct hash_is_avalanching_impl
|
struct hash_is_avalanching_impl:std::false_type{};
|
||||||
{
|
|
||||||
using type=std::false_type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<typename Hash>
|
template<typename Hash>
|
||||||
struct hash_is_avalanching_impl<Hash,void_t<typename Hash::is_avalanching>>
|
struct hash_is_avalanching_impl<Hash,void_t<typename Hash::is_avalanching>>:
|
||||||
{
|
std::true_type{};
|
||||||
using type=std::true_type;
|
|
||||||
};
|
|
||||||
|
|
||||||
} /* namespace detail */
|
} /* namespace detail */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user