]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstc++/4219
authorljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 15 Nov 2001 08:52:23 +0000 (08:52 +0000)
committerljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 15 Nov 2001 08:52:23 +0000 (08:52 +0000)
        * 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

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/stl_alloc.h

index 0128c431f8b20982a9cef18db71b9e5d7c8eaaa8..12e7692e953124652c92512c1a31a3da62367925 100644 (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.
index 4279ba0321a8a19bcd87987db1fcac6c007ccfd2..2ef6d53ee6beec57c8bea2289a3375c1792c7679 100644 (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