commit | 1221875948abfb8953d09b8b7913e9dbb8caad7e | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <chh@google.com> | Tue Oct 16 11:45:50 2018 -0700 |
committer | Chih-Hung Hsieh <chh@google.com> | Tue Oct 16 11:45:50 2018 -0700 |
tree | 2535fb8099631c27ab4680df2c22d4cf04ee7bf7 | |
parent | 8677e4bd3a091588c3b8058439f7022edab57f6e [diff] |
Fix implicit-fallthrough warning. Bug: 112564944 Test: make checkbuild Change-Id: Id5128b7fad1c267a6c9643817a146abb6949f237
diff --git a/tools/jfuzz/jfuzz.cc b/tools/jfuzz/jfuzz.cc index a97a99c..b8a646d 100644 --- a/tools/jfuzz/jfuzz.cc +++ b/tools/jfuzz/jfuzz.cc
@@ -562,11 +562,11 @@ case 1: if (emitArrayVariable(tp)) return; - // FALL-THROUGH + [[fallthrough]]; case 2: if (emitLocalVariable(tp)) return; - // FALL-THROUGH + [[fallthrough]]; default: emitFieldVariable(tp); break;