[libcxx-commits] [PATCH] D58879: Implement uses-allocator (P0591R4)

Fangrui Song via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Thu Aug 1 09:26:29 PDT 2019


MaskRay added inline comments.


================
Comment at: include/memory:5840
+{
+    return ::new(static_cast<void*>(__p)) _Tp(make_obj_using_allocator<_Tp>(__alloc,
+                                                                            _VSTD::forward<_Args>(__args)...));
----------------
Should `make_obj_using_allocator` be qualified?
https://github.com/cplusplus/draft/issues/3111
https://github.com/gcc-mirror/gcc/commit/0c3543005cee13158806fe2909de9920522d2f9e


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D58879/new/

https://reviews.llvm.org/D58879





More information about the libcxx-commits mailing list