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