#6190 closed Bugs (fixed)
Warnings in unordered when compiled with "-Wshadow"
Reported by: | Owned by: | Daniel James | |
---|---|---|---|
Milestone: | Boost 1.50.0 | Component: | unordered |
Version: | Boost 1.48.0 | Severity: | Cosmetic |
Keywords: | Cc: |
Description
g++ 4.5.3 produces warnings in unordered when -Wshadow is used. The warnings exist 1.48.0 and in the svn trunk 75761.
This is a component specific ticket for ticket 5996 which also contains a patch.
Change History (4)
comment:1 by , 10 years ago
Milestone: | To Be Determined → Boost 1.50.0 |
---|---|
Status: | new → assigned |
comment:2 by , 10 years ago
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.
(In [78364]) Unordered: Avoid
-Wshadow
warnings. Refs #6190.