From 51a75c0fd0560611260429b28ae638f68511030e Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Wed, 27 Sep 2023 12:14:35 -0700 Subject: [PATCH] Replace usage of make_void with void_t --- include/boost/unordered/detail/type_traits.hpp | 2 +- include/boost/unordered/hash_traits.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/unordered/detail/type_traits.hpp b/include/boost/unordered/detail/type_traits.hpp index b6ae8506..fcac2403 100644 --- a/include/boost/unordered/detail/type_traits.hpp +++ b/include/boost/unordered/detail/type_traits.hpp @@ -81,7 +81,7 @@ namespace boost { template struct is_transparent::type> + boost::unordered::detail::void_t > : public std::true_type { }; diff --git a/include/boost/unordered/hash_traits.hpp b/include/boost/unordered/hash_traits.hpp index eeb21ba0..d5f94a78 100644 --- a/include/boost/unordered/hash_traits.hpp +++ b/include/boost/unordered/hash_traits.hpp @@ -23,7 +23,7 @@ struct hash_is_avalanching_impl: std::false_type{}; template struct hash_is_avalanching_impl::type>: + boost::unordered::detail::void_t >: std::true_type{}; } /* namespace detail */