[libcxx-commits] [PATCH] D62641: Support arrays in make_shared and allocate_shared (P0674R1)

Zoe Carver via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed May 29 19:30:30 PDT 2019


zoecarver marked 2 inline comments as done.
zoecarver added inline comments.


================
Comment at: include/memory:4637
+
+	template<size_t _Sz>
+	void operator()(remove_extent_t<_Tp>(*__ptr)[_Sz])
----------------
Oops, I will fix this. 


================
Comment at: include/memory:4740
+>::type
+make_shared(initializer_list<_Up> __element)
+{
----------------
I couldn't find a better way to do `initializer_list`s. Let me know if there is one. 


Repository:
  rCXX libc++

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

https://reviews.llvm.org/D62641





More information about the libcxx-commits mailing list