From-SVN: r16364
This commit is contained in:
Jason Merrill 1997-11-08 08:51:15 +00:00 committed by Jason Merrill
parent bd871063c5
commit c64e3181fe
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Sat Nov 8 00:45:17 1997 Jason Merrill <jason@yorick.cygnus.com>
* stl_hash_set.h (swap): Fix typo.
Fri Nov 7 10:27:40 1997 Jason Merrill <jason@yorick.cygnus.com>
* stl_hashtable.h: Fix typo.

View File

@ -324,6 +324,7 @@ inline bool operator==(const hash_multiset<Val, HashFcn, EqualKey, Alloc>& hs1,
template <class Val, class HashFcn, class EqualKey, class Alloc>
inline void swap(hash_multiset<Val, HashFcn, EqualKey, Alloc>& hs1,
hash_multiset<Val, HashFcn, EqualKey, Alloc>& hs2)
{
hs1.swap(hs2);
}