* include/std/memory (make_obj_using_allocator): Qualify call to
uses_allocator_construction_args.
From-SVN: r273945
2019-07-31 Jonathan Wakely <jwakely@redhat.com>
+ * include/std/memory (make_obj_using_allocator): Qualify call to
+ uses_allocator_construction_args.
+
P0631R4 Math Constants
* include/Makefile.am: Add new header.
* include/Makefile.in: Regenerate.
inline _Tp
make_obj_using_allocator(const _Alloc& __a, _Args&&... __args)
{
- return std::make_from_tuple<_Tp>(uses_allocator_construction_args<_Tp>(
- __a, std::forward<_Args>(__args)...));
+ return std::make_from_tuple<_Tp>(
+ std::uses_allocator_construction_args<_Tp>(__a,
+ std::forward<_Args>(__args)...));
}
template<typename _Tp, typename _Alloc, typename... _Args>