On Sun, Mar 12, 2023 at 2:50 PM Breno Guimarães <brenorg@gmail.com> wrote:> All our use-cases so far are use-cases for the allocating-but-not-constructing entrypoint.Even on std::make_shared<std::string[]>(10) ? That is a case of allocating and constructing.That default-constructs the 10 string objects, true. But it doesn't default-construct the 1 _ControlBlock object that precedes them:So an entrypoint that default-constructs all Ns... of the Ts... isn't helpful to this use-case.–Arthur