[Boost-bugs] [Boost C++ Libraries] #3119: unordered_map documentation issue

Subject: [Boost-bugs] [Boost C++ Libraries] #3119: unordered_map documentation issue
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2009-06-01 19:19:13


#3119: unordered_map documentation issue
------------------------------+---------------------------------------------
 Reporter: patdesro_at_[hidden] | Owner: danieljames
     Type: Bugs | Status: new
Milestone: Boost 1.40.0 | Component: unordered
  Version: Boost 1.39.0 | Severity: Problem
 Keywords: |
------------------------------+---------------------------------------------
 In the “Equality Predicates and Hash Functions”, the boost::unordered_map
 is declared like this:

 {{{
 template <
     class Key, class Mapped,
     class Hash = boost::hash<Key>,
     class Pred = std::equal_to<Key>,
     class Alloc = std::allocator<Key> >
 class unordered_map;
 }}}

 Should be:

 {{{
 template <
     class Key, class Mapped,
     class Hash = boost::hash<Key>,
     class Pred = std::equal_to<Key>,
     class Alloc = std::allocator<std::pair<Key const, Mapped> > >
 class unordered_map;
 }}}

-- 
Ticket URL: <https://svn.boost.org/trac/boost/ticket/3119>
Boost C++ Libraries <http://www.boost.org/>
Boost provides free peer-reviewed portable C++ source libraries.

This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:00 UTC