mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-19 14:17:41 +02:00
ArraysOf::reinit
This commit is contained in:
parent
61525264ae
commit
b6c4d579ca
@ -418,6 +418,14 @@ public:
|
||||
ArrayOf<ArrayOf<X>>::operator=(std::move(that));
|
||||
return *this;
|
||||
}
|
||||
|
||||
using ArrayOf<ArrayOf<X>>::reinit;
|
||||
void reinit(size_t countN, size_t countM, bool initialize = false)
|
||||
{
|
||||
reinit(countN, false);
|
||||
for (size_t ii = 0; ii < countN; ++ii)
|
||||
(*this)[ii].reinit(countM, initialize);
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user