commit | 63f4fe65b2ad684cd1e8bf5d5dc26229a4d320ab | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <chh@google.com> | Fri Oct 19 14:24:58 2018 -0700 |
committer | Chih-Hung Hsieh <chh@google.com> | Fri Oct 19 14:24:58 2018 -0700 |
tree | 7509a54907a4a987dae01bc28418df02957604f9 | |
parent | 591171a65982b3df98dba4d928f18e8837c238d0 [diff] [blame] |
Fix implicit-fallthrough warnings. Test: make checkbuild Bug: 112564944 Change-Id: Ifc8b7444b95d667b0d185c7d45b3f15278d4af2f
diff --git a/broadcastradio/common/utils2x/Utils.cpp b/broadcastradio/common/utils2x/Utils.cpp index 3e20b35..f292c08 100644 --- a/broadcastradio/common/utils2x/Utils.cpp +++ b/broadcastradio/common/utils2x/Utils.cpp
@@ -215,7 +215,7 @@ break; case IdentifierType::DAB_FREQUENCY: expect(val > 100000u, "f > 100MHz"); - // fallthrough + [[fallthrough]]; case IdentifierType::AMFM_FREQUENCY: case IdentifierType::DRMO_FREQUENCY: expect(val > 100u, "f > 100kHz");