diff --git a/include/boost/unordered/hash_traits.hpp b/include/boost/unordered/hash_traits.hpp index 5f501566..5ab4a556 100644 --- a/include/boost/unordered/hash_traits.hpp +++ b/include/boost/unordered/hash_traits.hpp @@ -20,16 +20,11 @@ namespace unordered{ namespace detail{ template -struct hash_is_avalanching_impl -{ - using type=std::false_type; -}; +struct hash_is_avalanching_impl:std::false_type{}; template -struct hash_is_avalanching_impl> -{ - using type=std::true_type; -}; +struct hash_is_avalanching_impl>: + std::true_type{}; } /* namespace detail */