summaryrefslogtreecommitdiff
path: root/ACE/examples/DLL/Today.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/DLL/Today.cpp')
-rw-r--r--ACE/examples/DLL/Today.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/ACE/examples/DLL/Today.cpp b/ACE/examples/DLL/Today.cpp
index 522bc6352ec..78dc766ce1f 100644
--- a/ACE/examples/DLL/Today.cpp
+++ b/ACE/examples/DLL/Today.cpp
@@ -25,13 +25,11 @@ Today::operator new (size_t bytes, const ACE_nothrow_t&)
{
return ::new (ACE_nothrow) char[bytes];
}
-#if !defined (ACE_LACKS_PLACEMENT_OPERATOR_DELETE)
void
Today::operator delete (void *p, const ACE_nothrow_t&) throw ()
{
delete [] static_cast <char *> (p);
}
-#endif /* ACE_LACKS_PLACEMENT_OPERATOR_DELETE */
#endif
void
Today::operator delete (void *ptr)