1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-21 14:50:06 +02:00
This commit is contained in:
Paul Licameli 2016-04-02 00:41:53 -04:00
parent 539eb0edf6
commit d9588dda9b

View File

@ -365,9 +365,9 @@ public:
explicit ArrayOf(size_t count, bool initialize = false)
{
if (initialize)
reset(safenew X[count]{});
this->reset(safenew X[count]{});
else
reset(safenew X[count]);
this->reset(safenew X[count]);
}
ArrayOf(const ArrayOf&) = delete;
ArrayOf& operator= (ArrayOf &&that)