hash_traits.hpp 708 B

12345678910111213141516171819202122232425262728
  1. /* Hash function characterization.
  2. *
  3. * Copyright 2022-2025 Joaquin M Lopez Munoz.
  4. * Distributed under the Boost Software License, Version 1.0.
  5. * (See accompanying file LICENSE_1_0.txt or copy at
  6. * http://www.boost.org/LICENSE_1_0.txt)
  7. *
  8. * See https://www.boost.org/libs/unordered for library home page.
  9. */
  10. #ifndef BOOST_UNORDERED_HASH_TRAITS_HPP
  11. #define BOOST_UNORDERED_HASH_TRAITS_HPP
  12. #include <boost/config/header_deprecated.hpp>
  13. #include <boost/container_hash/hash_is_avalanching.hpp>
  14. BOOST_HEADER_DEPRECATED("<boost/container_hash/hash_is_avalanching.hpp>")
  15. namespace boost{
  16. namespace unordered{
  17. using boost::hash_is_avalanching;
  18. } /* namespace unordered */
  19. } /* namespace boost */
  20. #endif