]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
fix typo
authorJason Merrill <jason@yorick.cygnus.com>
Sat, 8 Nov 1997 08:51:40 +0000 (08:51 +0000)
committerJason Merrill <jason@gcc.gnu.org>
Sat, 8 Nov 1997 08:51:40 +0000 (03:51 -0500)
From-SVN: r16365

libstdc++/stl/ChangeLog
libstdc++/stl/stl_hash_set.h

index b6804d0277e97fd07843fa569acb6cf9bbbd3239..c9aff2748c5bfd7dd49670c65358dbe94dda8388 100644 (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.
index 80159dab59f63a171d11ddd94b9823b33fc15793..1ba87c484978b5f58ed8acb38dbb41de58a6b1af 100644 (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);
 }