diff options
| author | 2018-10-22 23:11:26 +0000 | |
|---|---|---|
| committer | 2018-10-22 23:11:26 +0000 | |
| commit | 517a57bde32f9ce23a6c4c6ac3c3f636ecab44b5 (patch) | |
| tree | 87c820a7074975a7691f7f3b8c7137282c26a4ff | |
| parent | c03273439973d285321864636b601dd269ad5b61 (diff) | |
| parent | 0798ad42af7cf1648d428dfe4f0b709334e1023c (diff) | |
Merge "Allow implicit-fallthrough warnings locally."
| -rw-r--r-- | services/inputflinger/Android.bp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/services/inputflinger/Android.bp b/services/inputflinger/Android.bp index a9e5a4339c..887119992c 100644 --- a/services/inputflinger/Android.bp +++ b/services/inputflinger/Android.bp @@ -41,6 +41,8 @@ cc_library_shared { "-Wall", "-Wextra", "-Werror", + // Allow implicit fallthroughs in InputReader.cpp until they are fixed. + "-Wno-error=implicit-fallthrough", "-Wno-unused-parameter", // TODO: Move inputflinger to its own process and mark it hidden //-fvisibility=hidden |