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 + 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 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