From 2a692463e577775fe948e9e62af4f26f1bbbd53d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Wennberg?= Date: Thu, 15 Nov 2001 08:52:23 +0000 Subject: [PATCH] stl_alloc.h (alloc): Update to use __mem_interface. libstc++/4219 * include/bits/stl_alloc.h (alloc): Update to use __mem_interface. (single_client_alloc): Likewise. From-SVN: r47044 --- libstdc++-v3/ChangeLog | 7 +++++++ 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 + 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