This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Fix for g++.old-deja/g++.robertl/eb130.C
- From: Paolo Carlini <pcarlini at unitus dot it>
- To: libstdc++ at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Cc: pedwards at disater dot jaj dot com
- Date: Mon, 31 Dec 2001 16:09:36 +0100
- Subject: Fix for g++.old-deja/g++.robertl/eb130.C
Hi all,
I inadvertently caused this regression. Currently this test, which is just:
#include <ext/hash_set>
std::hash_set<int> foo;
is obviously failing, since hash_set is now in __gnu_cxx.
The fix is trivial, but only someone with write access to gcc/testsuite can
commit it.
Thanks,
Paolo.
/////////////
*** eb130.C.orig Mon Dec 31 16:06:28 2001
--- eb130.C Mon Dec 31 16:06:46 2001
***************
*** 7,11 ****
#include <ext/hash_set>
! std::hash_set<int> foo;
--- 7,11 ----
#include <ext/hash_set>
! __gnu_cxx::hash_set<int> foo;