diff --git a/doc/container.qbk b/doc/container.qbk index 2c3dd4e..8a043a9 100644 --- a/doc/container.qbk +++ b/doc/container.qbk @@ -648,6 +648,9 @@ use [*Boost.Container]? There are several reasons for that: [@http://bannalia.blogspot.com/2008/09/introducing-stablevector.html Joaqu\u00EDn M. L\u00F3pez Mu\u00F1oz], then adapted for [*Boost.Interprocess]. Thanks for such a great container. +* `static_vector` was based on Andrew Hundt's and Adam Wulkiewicz's high-performance `varray` class. + Many performance improvements of `vector` were also inspired in their implementation. Thanks! + * Howard Hinnant's help and advices were essential when implementing move semantics, improving allocator support or implementing small string optimization. Thanks Howard for your wonderful standard library implementations. @@ -661,6 +664,8 @@ use [*Boost.Container]? There are several reasons for that: [section:release_notes_boost_1_54_00 Boost 1.54 Release] +* Added experimental `static_vector` class, based on Andrew Hundt's and Adam Wulkiewicz's + high performance `varray` class. * Speed improvements in `vector` constructors/copy/move/swap, dispatching to memcpy when possible. * Support for `BOOST_NO_EXCEPTIONS` [@https://svn.boost.org/trac/boost/ticket/7227 #7227]. * Fixed bugs [@https://svn.boost.org/trac/boost/ticket/7921 #7921], @@ -668,7 +673,6 @@ use [*Boost.Container]? There are several reasons for that: [@https://svn.boost.org/trac/boost/ticket/8118 #8118], [@https://svn.boost.org/trac/boost/ticket/8294 #8294], [@https://svn.boost.org/trac/boost/ticket/8553 #8553]. -* Added experimental `static_vector` class. [endsect]