mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-14 00:14:18 +00:00
Over-zealous assertion fix.
This commit is contained in:
parent
472082c378
commit
7f7cbe73fd
1 changed files with 1 additions and 1 deletions
|
|
@ -438,7 +438,7 @@ public:
|
|||
numElementsToAdd = arrayToAddFrom.size() - startIndex;
|
||||
|
||||
data.ensureAllocatedSize (numUsed + numElementsToAdd);
|
||||
jassert (data.elements != nullptr);
|
||||
jassert (numElementsToAdd <= 0 || data.elements != nullptr);
|
||||
|
||||
while (--numElementsToAdd >= 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue