commit | 1ce134aab751e645fc8c91d0abcac4d5d1479ae2 | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <chh@google.com> | Tue Oct 16 11:50:18 2018 -0700 |
committer | Chih-Hung Hsieh <chh@google.com> | Tue Oct 16 11:50:18 2018 -0700 |
tree | d7174ca1db08df8369afc374d1b885869afd9b47 | |
parent | 0e91bac015fd550ea4fe6fa47fdbccb982f9660d [diff] [blame] |
Fix implicit-fallthrough warning. Bug: 112564944 Test: make checkbuild Change-Id: I7fcc52cd96cd781fe026e07c8029feeea8ceced0
diff --git a/tools/atree/files.cpp b/tools/atree/files.cpp index d5c8a97..b90f8b3 100644 --- a/tools/atree/files.cpp +++ b/tools/atree/files.cpp
@@ -81,7 +81,7 @@ state = TEXT; break; } - // otherwise fall-through to TEXT case + [[fallthrough]]; case TEXT: if (state != IN_QUOTE && isspace(*p)) { if (q != p) {