From-SVN: r16357
This commit is contained in:
Jason Merrill 1997-11-07 18:29:13 +00:00 committed by Jason Merrill
parent 4d6efa25ac
commit 29088d20b7
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri Nov 7 10:27:40 1997 Jason Merrill <jason@yorick.cygnus.com>
* stl_hashtable.h: Fix typo.
Thu Nov 6 11:19:09 1997 Jason Merrill <jason@yorick.cygnus.com>
* stl_algo.h, stl_algobase.h, stl_bvector.h,

View File

@ -612,7 +612,7 @@ bool operator==(const hashtable<V, K, HF, Ex, Eq, A>& ht1,
template <class Val, class Key, class HF, class Extract, class EqKey, class A>
inline void swap(hashtable<Val, Key, HF, Extract, EqKey, A>& ht1,
hashtable<Val, Key, HF, Extract, EqKay, A>& ht2) {
hashtable<Val, Key, HF, Extract, EqKey, A>& ht2) {
ht1.swap(ht2);
}