Searched defs:allocator_adaptor (Results 1 – 2 of 2) sorted by relevance
89 struct allocator_adaptor:Allocator struct91 using traits=std::allocator_traits<Allocator>;93 using value_type=typename traits::value_type;94 using size_type=typename traits::size_type;95 using difference_type=typename traits::difference_type;96 using pointer=typename traits::pointer;97 using const_pointer=typename traits::const_pointer;98 using void_pointer=typename traits::void_pointer;99 using const_void_pointer=typename traits::const_void_pointer;100 using propagate_on_container_copy_assignment=[all …]
94 struct allocator_adaptor struct96 typedef typename Allocator::value_type value_type;97 typedef typename Allocator::size_type size_type;98 typedef typename Allocator::difference_type difference_type;99 typedef typename Allocator::pointer pointer;100 typedef typename Allocator::const_pointer const_pointer;101 typedef typename Allocator::reference reference;102 typedef typename Allocator::const_reference const_reference;104 static void allocate_failed() in allocate_failed()