From 0a3ac26f004bf038dda3f24f1b35d5cb24ab674f Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Tue, 28 Feb 2023 14:55:46 -0800 Subject: [PATCH 1/2] Update changelog to reflect planned C++03 deprecation --- doc/unordered/changes.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/unordered/changes.adoc b/doc/unordered/changes.adoc index e0d318ec..c99d69a5 100644 --- a/doc/unordered/changes.adoc +++ b/doc/unordered/changes.adoc @@ -8,6 +8,8 @@ == Release 1.82.0 - Major update +* {cpp}03 support is planned for deprecation. Boost 1.84.0 will no longer support + {cpp}03 mode and {cpp}11 will become the new minimum for using the library. * Added node-based, open-addressing containers `boost::unordered_node_map` and `boost::unordered_node_set`. * Extended heterogeneous lookup to more member functions as specified in From dc63438e22da4c0eaefe6d5ac95ff5fffb428594 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Wed, 1 Mar 2023 09:37:49 -0800 Subject: [PATCH 2/2] Add missing end-of-list marker to compliance section --- doc/unordered/compliance.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/unordered/compliance.adoc b/doc/unordered/compliance.adoc index cfe26f84..bc53e36e 100644 --- a/doc/unordered/compliance.adoc +++ b/doc/unordered/compliance.adoc @@ -143,3 +143,5 @@ The main differences with C++ unordered associative containers are: ** `value_type` must be move-constructible. ** Pointer stability is not kept under rehashing. ** There is no API for node extraction/insertion. + +//-