Home
last modified time | relevance | path

Searched refs:_PairMutable (Results 1 – 1 of 1) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/__memory/
H A Duses_allocator_construction.h191 using _PairMutable = remove_cv_t<_Pair>; in __uses_allocator_construction_args() member
193 _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