#ifndef BOOST_HASH2_IS_TRIVIALLY_EQUALITY_COMPARABLE_HPP_INCLUDED #define BOOST_HASH2_IS_TRIVIALLY_EQUALITY_COMPARABLE_HPP_INCLUDED // Copyright 2017, 2023, 2024 Peter Dimov. // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #include namespace boost { namespace hash2 { template struct is_trivially_equality_comparable: std::integral_constant< bool, std::is_integral::value || std::is_enum::value || std::is_pointer::value > { }; template struct is_trivially_equality_comparable: is_trivially_equality_comparable { }; } // namespace hash2 } // namespace boost #endif // #ifndef BOOST_HASH2_IS_TRIVIALLY_EQUALITY_COMPARABLE_HPP_INCLUDED