Replace usage of make_void with void_t

This commit is contained in:
Christian Mazakas
2023-09-27 12:14:35 -07:00
parent ce5033c4a0
commit 51a75c0fd0
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ namespace boost {
template <class T>
struct is_transparent<T,
typename boost::unordered::detail::make_void<typename T::is_transparent>::type>
boost::unordered::detail::void_t<typename T::is_transparent> >
: public std::true_type
{
};

View File

@ -23,7 +23,7 @@ struct hash_is_avalanching_impl: std::false_type{};
template<typename Hash>
struct hash_is_avalanching_impl<Hash,
typename boost::unordered::detail::make_void<typename Hash::is_avalanching>::type>:
boost::unordered::detail::void_t<typename Hash::is_avalanching> >:
std::true_type{};
} /* namespace detail */