From a6fa345ccc2557d4a26c0af6bdfc255c2e1139d0 Mon Sep 17 00:00:00 2001 From: reuk Date: Sun, 8 Dec 2024 22:25:01 +0000 Subject: [PATCH] SheenBidi: Disable implicit-fallthrough warning for clang/gcc --- modules/juce_graphics/juce_graphics_Sheenbidi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/juce_graphics/juce_graphics_Sheenbidi.c b/modules/juce_graphics/juce_graphics_Sheenbidi.c index e68fbaff3d..de61bc7c66 100644 --- a/modules/juce_graphics/juce_graphics_Sheenbidi.c +++ b/modules/juce_graphics/juce_graphics_Sheenbidi.c @@ -38,7 +38,8 @@ JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wsign-conversion", "-Wcast-align", "-Wunused-variable", "-Wunused-function", - "-Wstringop-overflow") + "-Wstringop-overflow", + "-Wimplicit-fallthrough") JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4189 4706)