From 1000c4ce2ec52654fe9f1df96d8fc773739fc4ee Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 7 Jan 2021 11:16:59 +0000 Subject: [PATCH] Android: Fixed a warning in the Oboe code with -Wswitch-enum enabled --- .../native/oboe/include/oboe/AudioStreamBase.h | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/juce_audio_devices/native/oboe/include/oboe/AudioStreamBase.h b/modules/juce_audio_devices/native/oboe/include/oboe/AudioStreamBase.h index d43176725c..e0b38aa61d 100644 --- a/modules/juce_audio_devices/native/oboe/include/oboe/AudioStreamBase.h +++ b/modules/juce_audio_devices/native/oboe/include/oboe/AudioStreamBase.h @@ -237,6 +237,7 @@ protected: case AudioFormat::Float: break; + case AudioFormat::Invalid: default: return Result::ErrorInvalidFormat; }