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

Fixed a couple more unused variables in iOS audio

This commit is contained in:
jules 2017-03-08 10:29:12 +00:00
parent 80a226204a
commit a96163df2a

View file

@ -648,6 +648,7 @@ public:
UInt32 dataSize = sizeof (connected);
OSStatus err = AudioUnitGetProperty (audioUnit, kAudioUnitProperty_IsInterAppConnected,
kAudioUnitScope_Global, 0, &connected, &dataSize);
ignoreUnused (err);
jassert (err == noErr);
JUCE_IOS_AUDIO_LOG ("handleInterAppAudioConnectionChange: " << (connected ? "connected"
@ -921,6 +922,7 @@ private:
0,
&callbackInfo,
&dataSize);
ignoreUnused (err);
jassert (err == noErr);
}