commit | 3880628d177b2d0a4e2ae55ef87de23575edf356 | [log] [tgz] |
---|---|---|
author | Chih-hung Hsieh <chh@google.com> | Mon Oct 22 16:45:30 2018 -0700 |
committer | android-build-merger <android-build-merger@google.com> | Mon Oct 22 16:45:30 2018 -0700 |
tree | 76bdb83ddf15ca536f538823cc0874187a22b410 | |
parent | ecb7b28a1e9b26a6f14ec21a59c7b68fa0b07e0a [diff] | |
parent | c50a18ad8f1fe44e9dad56bed8d2a9e5fd932dc0 [diff] |
Merge "Fix implicit-fallthrough warnings." am: 1ea726b6d7 am: 48a2ebbe1f am: c50a18ad8f Change-Id: Ia6a2f378dca41b8d9f5a1f992e826269849e628c
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");