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:
parent
10acaf4db9
commit
3090082cbe
@ -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.
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user