summaryrefslogtreecommitdiff
path: root/ace/Obchunk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Obchunk.cpp')
-rw-r--r--ace/Obchunk.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/ace/Obchunk.cpp b/ace/Obchunk.cpp
deleted file mode 100644
index 5143a07a20c..00000000000
--- a/ace/Obchunk.cpp
+++ /dev/null
@@ -1,30 +0,0 @@
-// $Id$
-
-#include "ace/Obchunk.h"
-
-#if !defined (__ACE_INLINE__)
-#include "ace/Obchunk.i"
-#endif /* __ACE_INLINE__ */
-
-ACE_RCSID(ace, Obchunk, "$Id$")
-
-ACE_ALLOC_HOOK_DEFINE(ACE_Obchunk)
-
-void
-ACE_Obchunk::dump (void) const
-{
- ACE_TRACE ("ACE_Obchunk::dump");
-
- ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
- ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("end_ = %x\n"), this->end_));
- ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("cur_ = %x\n"), this->cur_));
- ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
-}
-
-ACE_Obchunk::ACE_Obchunk (size_t size)
- : end_ (contents_ + size),
- block_ (contents_),
- cur_ (contents_),
- next_ (0)
-{
-}