Skip to content

Commit

Permalink
issue227: release build fix (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
u-he-frank authored and defiantnerd committed Mar 10, 2024
1 parent dd3459c commit 48cb77c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wrapasauv2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ OSStatus WrapAsAUV2::Render(AudioUnitRenderActionFlags& inFlags, const AudioTime
auto userd = _midioutput_hostcallback.userData;
auto pktlist = i->getMIDIPacketList();
auto fn = _midioutput_hostcallback.midiOutputCallback;
OSStatus result = (*fn)(userd, &inTimeStamp, i->_auport, pktlist);
[[maybe_unused]] OSStatus result = (*fn)(userd, &inTimeStamp, i->_auport, pktlist);
assert(result == noErr);
}
}
Expand Down

0 comments on commit 48cb77c

Please sign in to comment.