1
0
Fork 0
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:
jules 2017-03-16 09:34:42 +00:00
parent 1dd4b05516
commit 4b1d4c9681

View file

@ -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;
}