diff options
Diffstat (limited to 'winsup/cygwin/libstdcxx_wrapper.cc')
-rwxr-xr-x | winsup/cygwin/libstdcxx_wrapper.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/libstdcxx_wrapper.cc b/winsup/cygwin/libstdcxx_wrapper.cc index 42d4c5bca..a6492f243 100755 --- a/winsup/cygwin/libstdcxx_wrapper.cc +++ b/winsup/cygwin/libstdcxx_wrapper.cc @@ -76,13 +76,13 @@ operator new[](std::size_t sz, const std::nothrow_t &nt) throw() return (*user_data->cxx_malloc->oper_new___nt) (sz, nt); } -extern void +extern void operator delete(void *p, const std::nothrow_t &nt) throw() { (*user_data->cxx_malloc->oper_delete_nt) (p, nt); } -extern void +extern void operator delete[](void *p, const std::nothrow_t &nt) throw() { (*user_data->cxx_malloc->oper_delete___nt) (p, nt); |