new_op.cc: Update comments.
authorMark Mitchell <mark@codesourcery.com>
Tue, 3 Aug 2004 07:11:16 +0000 (07:11 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Tue, 3 Aug 2004 07:11:16 +0000 (07:11 +0000)
* libsupc++/new_op.cc: Update comments.
* libsupc++/del_op.cc: Likewise.

From-SVN: r85464

libstdc++-v3/ChangeLog
libstdc++-v3/libsupc++/del_op.cc
libstdc++-v3/libsupc++/new_op.cc

index 68a7ad3535ecc144ef8f7638281ee556e14b82de..f38b706f127ae56bed64a4411d04b26bda499ad2 100644 (file)
@@ -1,3 +1,8 @@
+2004-08-03  Mark Mitchell  <mark@codesourcery.com>
+
+       * libsupc++/new_op.cc: Update comments.
+       * libsupc++/del_op.cc: Likewise.
+
 2004-08-02  Mark Mitchell  <mark@codesourcery.com>
 
        * libsupc++/cxxabi.h: Make all declarations have default
index cfaa798f4c149df8c438ddc8523e92612f98b8d3..e99f5b658d5ab31d09d03674b4a2284af1781645 100644 (file)
@@ -34,9 +34,8 @@
 #if _GLIBCXX_HOSTED
 using std::free;
 #else
-// In a freestanding environment, "free" may not be available.  In
-// that case, it may make sense not to define "operator delete" at
-// all.  For now, we assume that "free" will work.
+// A freestanding C runtime may not provide "free" -- but there is no
+// other reasonable way to implement "operator delete".
 extern "C" void free(void *);
 #endif
 
index 186895bdf2e05beffbe2790c8ce754aa34b0ca90..983ae45420e864ba475a3fea683c76c5a947c4a3 100644 (file)
@@ -36,9 +36,8 @@ using std::bad_alloc;
 #if _GLIBCXX_HOSTED
 using std::malloc;
 #else
-// In a freestanding environment, "malloc" may not be available.  In
-// that case, it may make sense not to define "operator new" at all.
-// For now, we assume that "malloc" will work.
+// A freestanding C runtime may not provide "malloc" -- but there is no
+// other reasonable way to implement "operator new".
 extern "C" void *malloc (std::size_t);
 #endif