aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite
diff options
context:
space:
mode:
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-31 10:22:00 +0000
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-31 10:22:00 +0000
commit54904469cfb40d11ae4f06798fc405f82032cb2d (patch)
tree871cd9717a14c7d5be85ce430dca244f66806ebd /libstdc++-v3/testsuite
parent3d5289c0bf587af7cc7729fb107acae6d8dc4893 (diff)
2001-12-31 Paolo Carlini <pcarlini@unitus.it>
* include/ext/hash_map: Move into __gnu_cxx, tweak, add using declarations. * include/ext/hash_set: Ditto. * include/ext/ropeimpl.h: Ditto. * include/ext/stl_hash_fun.h: Ditto. * include/ext/stl_hashtable.h: Ditto. * include/ext/stl_rope.h: Ditto. * src/ext-inst.cc: Tweak. * testsuite/ext/rope.cc: Tweak. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48422 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite')
-rw-r--r--libstdc++-v3/testsuite/ext/rope.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/testsuite/ext/rope.cc b/libstdc++-v3/testsuite/ext/rope.cc
index 79eecf822b5..969554cbe1c 100644
--- a/libstdc++-v3/testsuite/ext/rope.cc
+++ b/libstdc++-v3/testsuite/ext/rope.cc
@@ -25,7 +25,7 @@
void test01()
{
- std::crope foo;
+ __gnu_cxx::crope foo;
foo += "bar";
const char* data = foo.c_str();
std::cout << data << std::endl;