hash_map.h: hash, hashtable, hash_map and hash_multimap are in namespace __gnu_cxx.

2002-03-18  Philipp Thomas  <pthomas@suse.de>

	* include/backward/hash_map.h: hash, hashtable, hash_map and
	hash_multimap are in namespace __gnu_cxx.
	include/backward/hash_set.h: hash, hashtable, hash_set and
	hash_multiset are in namespace __gnu_cxx.
	include/backward/hashtable.h: hash and hashtable are in
	namespace __gnu_cxx.
	include/backward/rope.h: char_producer, sequence_buffer,
	rope, crope and wrope are in namespace __gnu_cxx.
	include/backward/slist.h: slist is in namespace __gnu_cxx.
	* testsuite/backward/header_hash_map_h.cc
	testsuite/backward/header_hash_set_h.cc
	testsuite/backward/header_hashtable_h.cc
	testsuite/backward/header_rope_h.cc
	testsuite/backward/header_slist_h.cc
	testsuite/backward/header_tempbuf_h.cc: New tests for
	checking that we're using the correct namespace.

From-SVN: r51331
This commit is contained in:
Benjamin Kosnik 2002-03-25 19:56:57 +00:00
parent 5c67690ead
commit 3f8823a948
6 changed files with 41 additions and 22 deletions

View File

@ -39,6 +39,25 @@
* include/bits/locale_facets.tcc
(collate::do_transform): Simplify.
2002-03-18 Philipp Thomas <pthomas@suse.de>
* include/backward/hash_map.h: hash, hashtable, hash_map and
hash_multimap are in namespace __gnu_cxx.
include/backward/hash_set.h: hash, hashtable, hash_set and
hash_multiset are in namespace __gnu_cxx.
include/backward/hashtable.h: hash and hashtable are in
namespace __gnu_cxx.
include/backward/rope.h: char_producer, sequence_buffer,
rope, crope and wrope are in namespace __gnu_cxx.
include/backward/slist.h: slist is in namespace __gnu_cxx.
* testsuite/backward/header_hash_map_h.cc
testsuite/backward/header_hash_set_h.cc
testsuite/backward/header_hashtable_h.cc
testsuite/backward/header_rope_h.cc
testsuite/backward/header_slist_h.cc
testsuite/backward/header_tempbuf_h.cc: New tests for
checking that we're using the correct namespace.
2002-03-17 Jason Merrill <jason@redhat.com>
PR c++/4381
@ -47,7 +66,12 @@
(__cxa_call_unexpected): Pass it.
(PERSONALITY_FUNCTION): Likewise. Use get_adjusted_ptr.
2002-03-16 Paolo Carlini <pcarlini@unitus.it>
2002-03-15 Anthony Green <green@redhat.com>
* configure.in: Remove useless is_mingw32.
* configure: Rebuilt.
2002-03-15 Paolo Carlini <pcarlini@unitus.it>
* testsuite/22_locale/collate_members_char.cc
(test01): compare the result of collate::compare with
@ -57,11 +81,6 @@
normalized, therefore test against +-1.
* testsuite/22_locale/collate_members_wchar_t.cc: Ditto.
Fri Mar 15 09:55:49 2002 Anthony Green <green@redhat.com>
* configure.in: Remove useless is_mingw32.
* configure: Rebuilt.
2002-03-12 Loren Rittle <ljrittle@acm.org>
reported by Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de>

View File

@ -60,10 +60,10 @@
#include "algobase.h"
#include <ext/hash_map>
using std::hash;
using std::hashtable;
using std::hash_map;
using std::hash_multimap;
using __gnu_cxx::hash;
using __gnu_cxx::hashtable;
using __gnu_cxx::hash_map;
using __gnu_cxx::hash_multimap;
#endif /* _CPP_BACKWARD_HASH_MAP_H */

View File

@ -60,10 +60,10 @@
#include "algobase.h"
#include <ext/hash_set>
using std::hash;
using std::hashtable;
using std::hash_set;
using std::hash_multiset;
using __gnu_cxx::hash;
using __gnu_cxx::hashtable;
using __gnu_cxx::hash_set;
using __gnu_cxx::hash_multiset;
#endif /* _CPP_BACKWARD_HASH_SET_H */

View File

@ -66,8 +66,8 @@
#include "alloc.h"
#include "vector.h"
using std::hash;
using std::hashtable;
using __gnu_cxx::hash;
using __gnu_cxx::hashtable;
#endif /* _CPP_BACKWARD_HASHTABLE_H */

View File

@ -47,11 +47,11 @@
#include "hashtable.h"
#include <ext/rope>
using std::char_producer;
using std::sequence_buffer;
using std::rope;
using std::crope;
using std::wrope;
using __gnu_cxx::char_producer;
using __gnu_cxx::sequence_buffer;
using __gnu_cxx::rope;
using __gnu_cxx::crope;
using __gnu_cxx::wrope;
#endif /* _CPP_BACKWARD_ROPE_H */

View File

@ -47,7 +47,7 @@
#include "backward_warning.h"
#include <ext/slist>
using std::slist;
using __gnu_cxx::slist;
#endif /* _CPP_BACKWARD_SLIST_H */