Searched refs:_PairMutable (Results 1 – 1 of 1) sorted by relevance
191 using _PairMutable = remove_cv_t<_Pair>; in __uses_allocator_construction_args() member193 _LIBCPP_HIDE_FROM_ABI constexpr auto __do_construct(const _PairMutable& __pair) const { in __uses_allocator_construction_args()194 return std::__make_obj_using_allocator<_PairMutable>(__alloc_, __pair); in __uses_allocator_construction_args()197 _LIBCPP_HIDE_FROM_ABI constexpr auto __do_construct(_PairMutable&& __pair) const { in __uses_allocator_construction_args()198 return std::__make_obj_using_allocator<_PairMutable>(__alloc_, std::move(__pair)); in __uses_allocator_construction_args()204 _LIBCPP_HIDE_FROM_ABI constexpr operator _PairMutable() const { in __uses_allocator_construction_args() function