Qualify call to prevent ADL

* include/std/memory (make_obj_using_allocator): Qualify call to
	uses_allocator_construction_args.

From-SVN: r273945
This commit is contained in:
Jonathan Wakely 2019-07-31 20:08:56 +01:00 committed by Jonathan Wakely
parent 10acaf4db9
commit 3090082cbe
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,8 @@
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.

View File

@ -375,8 +375,9 @@ get_pointer_safety() noexcept { return pointer_safety::relaxed; }
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>