Add is_described_class to hash_fwd.hpp; include it in hash.hpp

This commit is contained in:
Peter Dimov
2022-10-28 03:32:18 +03:00
parent 0171246a61
commit 16fb4cc749
2 changed files with 3 additions and 1 deletions

View File

@@ -14,6 +14,7 @@
#include <boost/container_hash/is_range.hpp> #include <boost/container_hash/is_range.hpp>
#include <boost/container_hash/is_contiguous_range.hpp> #include <boost/container_hash/is_contiguous_range.hpp>
#include <boost/container_hash/is_unordered_range.hpp> #include <boost/container_hash/is_unordered_range.hpp>
#include <boost/container_hash/is_described_class.hpp>
#include <boost/container_hash/detail/hash_tuple.hpp> #include <boost/container_hash/detail/hash_tuple.hpp>
#include <boost/container_hash/detail/hash_mix.hpp> #include <boost/container_hash/detail/hash_mix.hpp>
#include <boost/container_hash/detail/hash_range.hpp> #include <boost/container_hash/detail/hash_range.hpp>

View File

@@ -1,5 +1,5 @@
// Copyright 2005-2009 Daniel James. // Copyright 2005-2009 Daniel James.
// Copyright 2021 Peter Dimov. // Copyright 2021, 2022 Peter Dimov.
// Distributed under the Boost Software License, Version 1.0. // Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt // https://www.boost.org/LICENSE_1_0.txt
@@ -17,6 +17,7 @@ namespace container_hash
template<class T> struct is_range; template<class T> struct is_range;
template<class T> struct is_contiguous_range; template<class T> struct is_contiguous_range;
template<class T> struct is_unordered_range; template<class T> struct is_unordered_range;
template<class T> struct is_described_class;
} // namespace container_hash } // namespace container_hash