id summary reporter owner description type status milestone component version severity resolution keywords cc 1883 [interprocess] boost::interprocess::allocator<>::segment_manager is a private typedef but it's used as a public typedef in the documentation Jason Sachs Ion Gaztañaga "Documentation: http://www.boost.org/doc/libs/1_35_0/doc/html/interprocess/allocators_containers.html Boost.Interprocess allocators also have a get_segment_manager() function that returns the underlying segment manager that they have received in the constructor: Allocator::segment_manager s = alloc_instance.get_segment_manager(); AnotherType *a = s->construct(anonymous_instance)(/*Parameters*/); Code: http://www.boost.org/doc/libs/1_35_0/boost/interprocess/allocators/allocator.hpp (also in svn trunk, Revision 44886) template class allocator { /// @cond private: //Self type typedef allocator self_t; //Segment manager typedef SegmentManager segment_manager; " Bugs closed To Be Determined interprocess Boost 1.35.0 Problem fixed allocator segment_manager