j
k
j a
j l
Hi,
On 03/12/2020 23:58, David Rush wrote:
if you want to do it the C++ way without a std::vector<t_atom> t_atom* at = new t_atom[ac]; but again you will have to delete at;
if you want to do it the C++ way without a std::vector<t_atom>
t_atom* at = new t_atom[ac];
but again you will have to
delete at;
This should be delete[] at;
Claude
Back to the thread
Back to the list