...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Initial review version, for the review conducted from 7th December 2007 to 16th December 2007.
Unofficial release uploaded to vault, to be used with Boost 1.35.0. Incorporated many of the suggestions from the review.
std::size_t
conversion when calculating sizes from the max load factor, and use double
in the calculation for greater accuracy.
First official release.
emplace
with hint, to emplace_hint
as specified in n2691.
<boost/unordered/unordered_map_fwd.hpp>
and <boost/unordered/unordered_set_fwd.hpp>
.
boost/unordered
,
to assist modularization and hopefully make it easier to track changes in
subversion.
boost::swap
.
construct
method - once for the pointers and once for the value. It now constructs
the node with a single call to construct and then constructs the value using
in place construction.