]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
fix typo
authorJason Merrill <jason@yorick.cygnus.com>
Fri, 7 Nov 1997 18:28:58 +0000 (18:28 +0000)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 7 Nov 1997 18:28:58 +0000 (13:28 -0500)
From-SVN: r16356

libstdc++/stl/ChangeLog
libstdc++/stl/stl_hashtable.h

index 1873c9f7e4bf8f1316ee83379a0710f69ff959a0..b6804d0277e97fd07843fa569acb6cf9bbbd3239 100644 (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,
index 2452f625d3db52a68241628a2093d45902a4d2c3..fbe974dd56c77cb394d1eb185f9529c4596085ac 100644 (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);
 }