From: ljrittle Date: Thu, 15 Nov 2001 08:52:23 +0000 (+0000) Subject: libstc++/4219 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47a616a1176b53290d0394afcb4ea19f5bc04460;p=thirdparty%2Fgcc.git 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 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 0128c431f8b2..12e7692e9531 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2001-11-15 + Loren J. Rittle + + libstc++/4219 + * include/bits/stl_alloc.h (alloc): Update to use __mem_interface. + (single_client_alloc): Likewise. + 2001-11-08 Danny Smith * 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 4279ba0321a8..2ef6d53ee6be 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