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
This commit is contained in:
Bjørn Wennberg 2001-11-15 08:52:23 +00:00 committed by Loren J. Rittle
parent ab3fdb7fa9
commit 2a692463e5
2 changed files with 9 additions and 2 deletions

View File

@ -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.

View File

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