Opened 10 years ago
Closed 10 years ago
#6857 closed Feature Requests (fixed)
reserve()
Reported by: | Owned by: | Daniel James | |
---|---|---|---|
Milestone: | Boost 1.50.0 | Component: | unordered |
Version: | Boost 1.49.0 | Severity: | Problem |
Keywords: | Cc: |
Description
Could you support reserve()?
http://en.cppreference.com/w/cpp/container/unordered_map/reserve
Change History (3)
comment:1 by , 10 years ago
Milestone: | To Be Determined → Boost 1.50.0 |
---|---|
Status: | new → assigned |
Version: | Boost 1.48.0 → Boost 1.49.0 |
comment:3 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
(In [78432]) Unordered: Merge unordered from trunk.
- Activate
std::allocator_traits
for gcc 4.7 and Visual C++ 11. - Implement variadic construct in
boost::unordered::detail::allocator_traits
when variadics, rvalue references and SFINAE expression are available. - Use variadic construct from
allocator_traits
, or when not available move the logic for constructingvalue_type
to a lower level, so the container code is a bit simpler. - Avoid
-Wshadow
warnings. Fixes #6190. - Implement
reserve
. Fixes #6857.
Note:
See TracTickets
for help on using tickets.
Of course, I only haven't because I hadn't noticed that it was added. Which is a pity, as I think the specification has an off by one error. I've posted to comp.std.c++ about that, although maybe I'm wrong.