diff options
| author | 2018-10-20 00:15:20 +0000 | |
|---|---|---|
| committer | 2018-10-20 00:15:20 +0000 | |
| commit | 8f520e6f833d0ddd25dd57f8acb23a860edaccbe (patch) | |
| tree | eaf2f1c5a6c4eb78db621dfa011d54979d4f450e | |
| parent | 50242ce28ad4b0eb00ea0f69ce038cfa130e4770 (diff) | |
| parent | 672a4fd863811d5c3dbe2307c86404be38468340 (diff) | |
Merge "Fix implicit-fallthrough warnings."
| -rw-r--r-- | libs/hwui/tests/macrobench/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |