summaryrefslogtreecommitdiff
path: root/ace/Message_Block_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Message_Block_T.inl')
-rw-r--r--ace/Message_Block_T.inl31
1 files changed, 0 insertions, 31 deletions
diff --git a/ace/Message_Block_T.inl b/ace/Message_Block_T.inl
deleted file mode 100644
index 6829bd6c360..00000000000
--- a/ace/Message_Block_T.inl
+++ /dev/null
@@ -1,31 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-template<class ACE_LOCK> ACE_INLINE
-ACE_Locked_Data_Block<ACE_LOCK>::ACE_Locked_Data_Block (void)
-{
- this->locking_strategy_ = &this->lock_;
-}
-
-template<class ACE_LOCK> ACE_INLINE
-ACE_Locked_Data_Block<ACE_LOCK>::
-ACE_Locked_Data_Block (size_t size,
- ACE_Message_Block::ACE_Message_Type msg_type,
- const char *msg_data,
- ACE_Allocator *allocator_strategy,
- ACE_Message_Block::Message_Flags flags,
- ACE_Allocator *data_block_allocator)
- : ACE_Data_Block (size,
- msg_type,
- msg_data,
- allocator_strategy,
- &lock_,
- flags,
- data_block_allocator)
-{
-}
-
-ACE_END_VERSIONED_NAMESPACE_DECL