mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-01 03:10:06 +00:00
Added a cast to avoid a compiler warning
This commit is contained in:
parent
1dd4b05516
commit
4b1d4c9681
1 changed files with 1 additions and 1 deletions
|
|
@ -446,7 +446,7 @@ public:
|
|||
{
|
||||
if (outputs[j] == chan)
|
||||
{
|
||||
chan = new FloatType [blockSize * 2];
|
||||
chan = new FloatType [(size_t) blockSize * 2];
|
||||
tmpBuffers.tempChannels.set (i, chan);
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue