Searched refs:_PairMutable (Results 1 – 1 of 1) sorted by relevance
185 using _PairMutable = remove_cv_t<_Pair>; in __uses_allocator_construction_args() member187 _LIBCPP_HIDDEN constexpr auto __do_construct(const _PairMutable& __pair) const { in __uses_allocator_construction_args()188 return std::__make_obj_using_allocator<_PairMutable>(__alloc_, __pair); in __uses_allocator_construction_args()191 _LIBCPP_HIDDEN constexpr auto __do_construct(_PairMutable&& __pair) const { in __uses_allocator_construction_args()192 return std::__make_obj_using_allocator<_PairMutable>(__alloc_, std::move(__pair)); in __uses_allocator_construction_args()198 …_LIBCPP_HIDDEN constexpr operator _PairMutable() const { return __do_construct(std::forward<_Type>… in __uses_allocator_construction_args() function