OSDN Git Service

2001-05-24 Phil Edwards <pme@sources.redhat.com>
authorpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 25 May 2001 02:10:55 +0000 (02:10 +0000)
committerpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 25 May 2001 02:10:55 +0000 (02:10 +0000)
* libsupc++/eh_alloc.cc (__cxa_allocate_exception):  Qualify
malloc with std:: .
(__cxa_free_exception):  Likewise with free.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42556 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/libsupc++/eh_alloc.cc

index e0aada4..98158f9 100644 (file)
@@ -1,3 +1,9 @@
+2001-05-24  Phil Edwards  <pme@sources.redhat.com>
+
+       * libsupc++/eh_alloc.cc (__cxa_allocate_exception):  Qualify
+       malloc with std:: .
+       (__cxa_free_exception):  Likewise with free.
+
 2001-05-24  Mark Mitchell  <mark@codesourcery.com>
 
        * include/c_std/bin/std_cstring.h: #define away all global
index edfcb5e..ee9f31c 100644 (file)
@@ -98,7 +98,7 @@ __cxa_allocate_exception(std::size_t thrown_size)
   void *ret;
 
   thrown_size += sizeof (__cxa_exception);
-  ret = malloc (thrown_size);
+  ret = std::malloc (thrown_size);
 
   if (! ret)
     {
@@ -158,5 +158,5 @@ __cxa_free_exception(void *vptr)
 #endif
     }
   else
-    free (ptr - sizeof (__cxa_exception));
+    std::free (ptr - sizeof (__cxa_exception));
 }