Browse Source

Android: Fix a compiler warning

v7.0.9
Tom Poole 2 years ago
parent
commit
8524d4d815
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_devices/native/juce_android_Oboe.cpp

+ 1
- 1
modules/juce_audio_devices/native/juce_android_Oboe.cpp 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);


Loading…
Cancel
Save