From 16fb4cc7499a9460840a1b9430b25ce390d94228 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 28 Oct 2022 03:32:18 +0300 Subject: [PATCH] Add is_described_class to hash_fwd.hpp; include it in hash.hpp --- include/boost/container_hash/hash.hpp | 1 + include/boost/container_hash/hash_fwd.hpp | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/boost/container_hash/hash.hpp b/include/boost/container_hash/hash.hpp index 092d256..c34a78c 100644 --- a/include/boost/container_hash/hash.hpp +++ b/include/boost/container_hash/hash.hpp @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include diff --git a/include/boost/container_hash/hash_fwd.hpp b/include/boost/container_hash/hash_fwd.hpp index f3a30e5..489fdd2 100644 --- a/include/boost/container_hash/hash_fwd.hpp +++ b/include/boost/container_hash/hash_fwd.hpp @@ -1,5 +1,5 @@ // Copyright 2005-2009 Daniel James. -// Copyright 2021 Peter Dimov. +// Copyright 2021, 2022 Peter Dimov. // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt @@ -17,6 +17,7 @@ namespace container_hash template struct is_range; template struct is_contiguous_range; template struct is_unordered_range; +template struct is_described_class; } // namespace container_hash