summaryrefslogtreecommitdiff
path: root/ACE/tests/DLL_Test_Impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/DLL_Test_Impl.cpp')
-rw-r--r--ACE/tests/DLL_Test_Impl.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/ACE/tests/DLL_Test_Impl.cpp b/ACE/tests/DLL_Test_Impl.cpp
index c99cb06fc8c..06b093a852d 100644
--- a/ACE/tests/DLL_Test_Impl.cpp
+++ b/ACE/tests/DLL_Test_Impl.cpp
@@ -61,14 +61,12 @@ Hello_Impl::operator new (size_t bytes, const ACE_nothrow_t &nt)
return ::new (nt) char[bytes];
}
-#if !defined (ACE_LACKS_PLACEMENT_OPERATOR_DELETE)
void
Hello_Impl::operator delete (void *ptr, const ACE_nothrow_t&) throw ()
{
ACE_DEBUG ((LM_INFO, "Hello_Impl::delete\n"));
::delete [] static_cast<char *> (ptr);
}
-#endif /* ACE_LACKS_PLACEMENT_OPERATOR_DELETE */
#endif /* ACE_HAS_NEW_NOTHROW */