diff options
Diffstat (limited to 'boost/interprocess/ipc/message_queue.hpp')
-rw-r--r-- | boost/interprocess/ipc/message_queue.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/boost/interprocess/ipc/message_queue.hpp b/boost/interprocess/ipc/message_queue.hpp index db422cc9d3..da45ad4807 100644 --- a/boost/interprocess/ipc/message_queue.hpp +++ b/boost/interprocess/ipc/message_queue.hpp @@ -74,7 +74,7 @@ class message_queue_t pointer_traits<void_pointer>::template rebind_pointer<char>::type char_ptr; typedef typename boost::intrusive::pointer_traits<char_ptr>::difference_type difference_type; - typedef typename boost::container::container_detail::make_unsigned<difference_type>::type size_type; + typedef typename boost::container::dtl::make_unsigned<difference_type>::type size_type; //!Creates a process shared message queue with name "name". For this message queue, //!the maximum number of messages will be "max_num_msg" and the maximum message size @@ -211,7 +211,7 @@ class msg_hdr_t pointer_traits<void_pointer>::template rebind_pointer<char>::type char_ptr; typedef typename boost::intrusive::pointer_traits<char_ptr>::difference_type difference_type; - typedef typename boost::container::container_detail::make_unsigned<difference_type>::type size_type; + typedef typename boost::container::dtl::make_unsigned<difference_type>::type size_type; public: size_type len; // Message length @@ -297,7 +297,7 @@ class mq_hdr_t typedef typename boost::intrusive::pointer_traits <msg_hdr_ptr_t>::difference_type difference_type; typedef typename boost::container:: - container_detail::make_unsigned<difference_type>::type size_type; + dtl::make_unsigned<difference_type>::type size_type; typedef typename boost::intrusive:: pointer_traits<void_pointer>::template rebind_pointer<msg_hdr_ptr_t>::type msg_hdr_ptr_ptr_t; @@ -529,8 +529,8 @@ class mq_hdr_t (size_type max_msg_size, size_type max_num_msg) { const size_type - msg_hdr_align = ::boost::container::container_detail::alignment_of<msg_header>::value, - index_align = ::boost::container::container_detail::alignment_of<msg_hdr_ptr_t>::value, + msg_hdr_align = ::boost::container::dtl::alignment_of<msg_header>::value, + index_align = ::boost::container::dtl::alignment_of<msg_hdr_ptr_t>::value, r_hdr_size = ipcdetail::ct_rounded_size<sizeof(mq_hdr_t), index_align>::value, r_index_size = ipcdetail::get_rounded_size<size_type>(max_num_msg*sizeof(msg_hdr_ptr_t), msg_hdr_align), r_max_msg_size = ipcdetail::get_rounded_size<size_type>(max_msg_size, msg_hdr_align) + sizeof(msg_header); @@ -543,8 +543,8 @@ class mq_hdr_t void initialize_memory() { const size_type - msg_hdr_align = ::boost::container::container_detail::alignment_of<msg_header>::value, - index_align = ::boost::container::container_detail::alignment_of<msg_hdr_ptr_t>::value, + msg_hdr_align = ::boost::container::dtl::alignment_of<msg_header>::value, + index_align = ::boost::container::dtl::alignment_of<msg_hdr_ptr_t>::value, r_hdr_size = ipcdetail::ct_rounded_size<sizeof(mq_hdr_t), index_align>::value, r_index_size = ipcdetail::get_rounded_size<size_type>(m_max_num_msg*sizeof(msg_hdr_ptr_t), msg_hdr_align), r_max_msg_size = ipcdetail::get_rounded_size<size_type>(m_max_msg_size, msg_hdr_align) + sizeof(msg_header); @@ -603,7 +603,7 @@ class msg_queue_initialization_func_t rebind_pointer<char>::type char_ptr; typedef typename boost::intrusive::pointer_traits<char_ptr>:: difference_type difference_type; - typedef typename boost::container::container_detail:: + typedef typename boost::container::dtl:: make_unsigned<difference_type>::type size_type; msg_queue_initialization_func_t(size_type maxmsg = 0, |