diff options
Diffstat (limited to 'ace/Message_Block.cpp')
-rw-r--r-- | ace/Message_Block.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Message_Block.cpp b/ace/Message_Block.cpp index 0c4c1e1b4f5..e29561e55a8 100644 --- a/ace/Message_Block.cpp +++ b/ace/Message_Block.cpp @@ -3,7 +3,7 @@ #define ACE_BUILD_DLL #include "ace/Message_Block.h" -#include "ace/Service_Config.h" +#include "ace/Synch_T.h" #if !defined (__ACE_INLINE__) #include "ace/Message_Block.i" @@ -196,9 +196,9 @@ ACE_Data_Block::ACE_Data_Block (size_t size, ACE_TRACE ("ACE_Data_Block::ACE_Data_Block"); // If the user didn't pass one in, let's use the - // <ACE_Service_Config::alloc>. + // <ACE_Allocator::instance>. if (this->allocator_strategy_ == 0) - ACE_ALLOCATOR (this->allocator_strategy_, ACE_Service_Config::alloc ()); + ACE_ALLOCATOR (this->allocator_strategy_, ACE_Allocator::instance ()); if (msg_data == 0) ACE_ALLOCATOR (this->base_, |