diff options
author | Paolo Carlini <pcarlini@unitus.it> | 2001-12-31 16:27:36 +0100 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2001-12-31 15:27:36 +0000 |
commit | c49b2550b76527b191417b4185388ac19e35b8dd (patch) | |
tree | 471636d8f07be9d726288441e5f3316d43b80b69 /gcc | |
parent | 0de92bd834191d60626e2afe28eda922c5d99514 (diff) | |
download | gcc-c49b2550b76527b191417b4185388ac19e35b8dd.zip gcc-c49b2550b76527b191417b4185388ac19e35b8dd.tar.gz gcc-c49b2550b76527b191417b4185388ac19e35b8dd.tar.bz2 |
eb130.C: hash_set is now in namespace __gnu_cxx
2001-12-31 Paolo Carlini <pcarlini@unitus.it>
* g++.old-deja/g++.robertl/eb130.C: hash_set is now
in namespace __gnu_cxx
From-SVN: r48427
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.robertl/eb130.C | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f47c334..01f659f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2001-12-31 Paolo Carlini <pcarlini@unitus.it> + + * g++.old-deja/g++.robertl/eb130.C: hash_set is now + in namespace __gnu_cxx + 2001-12-30 Richard Henderson <rth@redhat.com> * gcc.dg/debug-6.c: New. diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb130.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb130.C index 7e9fc59..d4aad46 100644 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb130.C +++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb130.C @@ -7,5 +7,5 @@ #include <ext/hash_set> -std::hash_set<int> foo; +__gnu_cxx::hash_set<int> foo; |