This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
stl bugs II
- To: egcs-bugs at cygnus dot com
- Subject: stl bugs II
- From: Gregory Mounie <Gregory dot Mounie at imag dot fr>
- Date: Fri, 7 Nov 1997 17:44:22 +0100 (MET)
Hello,
again in egcs-971105 (i do not look in previous one)
Another mistyping at line 327 in include/g++/stl_hash_set.h
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);
}
there is a missing "{" to begin the bloc of the function.
Gregory