Fix the unordered_map declaration in the tutorial. Fixes #3119.

[SVN r53552]
This commit is contained in:
Daniel James
2009-06-01 19:22:27 +00:00
parent 2b09a34467
commit 7e1dbc4cb7

View File

@ -13,7 +13,7 @@ is declared as:
class Key, class Mapped,
class Hash = ``[classref boost::hash]``<Key>,
class Pred = std::equal_to<Key>,
class Alloc = std::allocator<Key> >
class Alloc = std::allocator<std::pair<Key const, Mapped> > >
class ``[classref boost::unordered_map unordered_map]``;
The hash function comes first as you might want to change the hash function