summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--winsup/cygwin/cxx.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/winsup/cygwin/cxx.cc b/winsup/cygwin/cxx.cc
index 0faeaf7ee..df7491b42 100644
--- a/winsup/cygwin/cxx.cc
+++ b/winsup/cygwin/cxx.cc
@@ -29,6 +29,11 @@ operator delete (void *p)
{
free (p);
}
+void
+operator delete (void *p, size_t)
+{
+ ::operator delete(p);
+}
void *
operator new[] (std::size_t s)