diff --git a/hash/doc/changes.qbk b/hash/doc/changes.qbk index c458257..5ee6cb6 100644 --- a/hash/doc/changes.qbk +++ b/hash/doc/changes.qbk @@ -191,4 +191,8 @@ * Fix for recent versions of Visual C++ which have removed `std::unary_function` and `std::binary_function` ([ticket 12353]). +[h2 Boost 1.65.0] + +* Support for `char16_t`, `char32_t`, `u16string`, `u32string` + [endsect] diff --git a/hash/doc/ref.xml b/hash/doc/ref.xml index 5fcd43b..f5fd185 100644 --- a/hash/doc/ref.xml +++ b/hash/doc/ref.xml @@ -162,6 +162,42 @@ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + + + + char16_t + + + std::size_t + + char16_t + + + Unspecified in TR1, except that equal arguments yield the same result. + hash_value(val) in Boost. + + Doesn't throw + + + + + + + char32_t + + + std::size_t + + char32_t + + + Unspecified in TR1, except that equal arguments yield the same result. + hash_value(val) in Boost. + + Doesn't throw + + + @@ -396,6 +432,42 @@ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + + + + std::u16string + + + std::size_t + + std::u16string const& + + + Unspecified in TR1, except that equal arguments yield the same result. + hash_value(val) in Boost. + + Doesn't throw + + + + + + + std::u32string + + + std::size_t + + std::u32string const& + + + Unspecified in TR1, except that equal arguments yield the same result. + hash_value(val) in Boost. + + Doesn't throw + + +