1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Removed a few pedantic warnings.

This commit is contained in:
jules 2013-08-26 14:58:23 +01:00
parent d9498b28cc
commit 2786eadaf9
35 changed files with 235 additions and 237 deletions

View file

@ -153,7 +153,7 @@ void AudioProcessorPlayer::audioDeviceAboutToStart (AudioIODevice* const device)
numOutputChans = numChansOut;
messageCollector.reset (sampleRate);
channels.calloc (jmax (numChansIn, numChansOut) + 2);
channels.calloc ((size_t) jmax (numChansIn, numChansOut) + 2);
if (processor != nullptr)
{