From 672a4fd863811d5c3dbe2307c86404be38468340 Mon Sep 17 00:00:00 2001 From: Chih-Hung Hsieh Date: Fri, 19 Oct 2018 14:19:29 -0700 Subject: Fix implicit-fallthrough warnings. Test: make checkbuild Bug: 112564944 Change-Id: Iaebada5e1a5d94ed06d9b584b888a4f78c0b8505 --- libs/hwui/tests/macrobench/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/hwui/tests/macrobench/main.cpp b/libs/hwui/tests/macrobench/main.cpp index 853360666f3d..6caaf8d7616e 100644 --- a/libs/hwui/tests/macrobench/main.cpp +++ b/libs/hwui/tests/macrobench/main.cpp @@ -291,7 +291,7 @@ void parseOptions(int argc, char* argv[]) { case '?': fprintf(stderr, "Unrecognized option '%s'\n", argv[optind - 1]); - // fall-through + [[fallthrough]]; default: error = true; break; -- cgit v1.2.3-59-g8ed1b