Merge pull request #186 from boostorg/cxx03-deprecation

Update changelog to reflect planned C++03 deprecation
This commit is contained in:
Christian Mazakas 2023-03-01 09:53:24 -08:00 committed by GitHub
commit d90bf0c438
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -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

View File

@ -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.
//-