$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [shared_array] Why not in C++11 ?
From: Mathias Gaunard (mathias.gaunard_at_[hidden])
Date: 2013-07-06 04:53:18
On 06/07/13 00:41, Sid Sacek wrote:
> Does anyone know why 'boost::shared_array<>' was not made part of C++11, since pretty much all the other smart pointers were?
Because they added a specialization to shared_ptr instead.
shared_ptr<T[]> is the same as shared_array<T>.