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:
parent
80a226204a
commit
a96163df2a
1 changed files with 2 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue