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

Android: Fix a compiler warning

This commit is contained in:
Tom Poole 2023-03-03 13:41:06 +00:00
parent 8efadd14bb
commit 8524d4d815

View file

@ -478,7 +478,7 @@ private:
auto nextState = oboe::StreamState::Started;
int64 timeoutNanos = 1000 * oboe::kNanosPerMillisecond;
auto startResult = stream->requestStart();
[[maybe_unused]] auto startResult = stream->requestStart();
JUCE_OBOE_LOG ("Requested Oboe stream start with result: " + getOboeString (startResult));
startResult = stream->waitForStateChange (expectedState, &nextState, timeoutNanos);