diff options
author | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-15 08:52:23 +0000 |
---|---|---|
committer | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-15 08:52:23 +0000 |
commit | 47a616a1176b53290d0394afcb4ea19f5bc04460 (patch) | |
tree | 27f5e2cd18bae5ef2704afa9af8fc9380de2b39f | |
parent | 98f75e439a7f883d8d35a1a7222c495e0ea6768a (diff) | |
download | ppe42-gcc-47a616a1176b53290d0394afcb4ea19f5bc04460.tar.gz ppe42-gcc-47a616a1176b53290d0394afcb4ea19f5bc04460.zip |
libstc++/4219
* include/bits/stl_alloc.h (alloc): Update to use __mem_interface.
(single_client_alloc): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47044 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libstdc++-v3/ChangeLog | 7 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/stl_alloc.h | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 0128c431f8b..12e7692e953 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2001-11-15 <bjornw@planetarion.com> + Loren J. Rittle <ljrittle@acm.org> + + libstc++/4219 + * include/bits/stl_alloc.h (alloc): Update to use __mem_interface. + (single_client_alloc): Likewise. + 2001-11-08 Danny Smith <dannysmith@users.sourceforge.net> * configure.target: Add os_include_dir for mingw32* target. diff --git a/libstdc++-v3/include/bits/stl_alloc.h b/libstdc++-v3/include/bits/stl_alloc.h index 4279ba0321a..2ef6d53ee6b 100644 --- a/libstdc++-v3/include/bits/stl_alloc.h +++ b/libstdc++-v3/include/bits/stl_alloc.h @@ -258,8 +258,8 @@ public: # ifdef __USE_MALLOC -typedef malloc_alloc alloc; -typedef malloc_alloc single_client_alloc; +typedef __mem_interface alloc; +typedef __mem_interface single_client_alloc; # else |