1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-27 02:20:05 +00:00

Avoided warning in release builds in AudioUnit hosting code

This commit is contained in:
hogliux 2016-09-30 14:48:06 +01:00
parent bf85f4c68b
commit 848b400eaf

View file

@ -1602,6 +1602,7 @@ private:
OSStatus err = AudioUnitGetProperty (comp, kAudioUnitProperty_ElementCount, scope, 0, &count, &countSize);
jassert (err == noErr);
ignoreUnused (err);
return static_cast<int> (count);
}