aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Wennberg <bjornw@planetarion.com>2001-11-15 08:52:23 +0000
committerLoren J. Rittle <ljrittle@gcc.gnu.org>2001-11-15 08:52:23 +0000
commit2a692463e577775fe948e9e62af4f26f1bbbd53d (patch)
tree27f5e2cd18bae5ef2704afa9af8fc9380de2b39f
parentab3fdb7fa96bb4eea79050bfd40403124407881f (diff)
downloadgcc-2a692463e577775fe948e9e62af4f26f1bbbd53d.zip
gcc-2a692463e577775fe948e9e62af4f26f1bbbd53d.tar.gz
gcc-2a692463e577775fe948e9e62af4f26f1bbbd53d.tar.bz2
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
-rw-r--r--libstdc++-v3/ChangeLog7
-rw-r--r--libstdc++-v3/include/bits/stl_alloc.h4
2 files changed, 9 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 0128c43..12e7692 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -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.
diff --git a/libstdc++-v3/include/bits/stl_alloc.h b/libstdc++-v3/include/bits/stl_alloc.h
index 4279ba0..2ef6d53 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