From 6eba738b30462de3db7a45667ae4f454f5ebb329 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Wed, 4 Sep 2019 18:06:52 -0700 Subject: [PATCH] lib/led: temporarily ignore implicit fallthrough warning --- src/lib/led/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/led/CMakeLists.txt b/src/lib/led/CMakeLists.txt index 1306dbc12e94..82e33bc292ad 100644 --- a/src/lib/led/CMakeLists.txt +++ b/src/lib/led/CMakeLists.txt @@ -32,3 +32,6 @@ ############################################################################ px4_add_library(led led.cpp) +target_compile_options(led + PRIVATE -Wno-implicit-fallthrough # TODO: fix and remove +)