#ifndef BOOST_HASH_IS_TUPLE_LIKE_HPP_INCLUDED #define BOOST_HASH_IS_TUPLE_LIKE_HPP_INCLUDED // Copyright 2017, 2022 Peter Dimov. // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #include #include #include #include namespace boost { namespace hash_detail { template struct is_tuple_like_: false_type { }; #if !defined(BOOST_NO_CXX11_HDR_TUPLE) && !BOOST_WORKAROUND(BOOST_MSVC, <= 1800) template struct is_tuple_like_::value == std::tuple_size::value> >: true_type { }; #endif } // namespace hash_detail namespace container_hash { template struct is_tuple_like: hash_detail::is_tuple_like_ { }; } // namespace container_hash } // namespace boost #endif // #ifndef BOOST_HASH_IS_TUPLE_LIKE_HPP_INCLUDED