summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChih-hung Hsieh2018-10-22 15:36:53 -0500
committerGerrit Code Review2018-10-22 15:36:53 -0500
commit1ea726b6d7da167a3ab860ab0d912b8f89073fbd (patch)
treedfce09cf4d64fc2e9646bd763ec49b47ee7d0739
parent593ede93f09c709dbd8df3ecd5736f504c3b4d73 (diff)
parent63f4fe65b2ad684cd1e8bf5d5dc26229a4d320ab (diff)
downloadplatform-hardware-interfaces-1ea726b6d7da167a3ab860ab0d912b8f89073fbd.tar.gz
platform-hardware-interfaces-1ea726b6d7da167a3ab860ab0d912b8f89073fbd.tar.xz
platform-hardware-interfaces-1ea726b6d7da167a3ab860ab0d912b8f89073fbd.zip
Merge "Fix implicit-fallthrough warnings."
-rw-r--r--broadcastradio/common/utils2x/Utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/broadcastradio/common/utils2x/Utils.cpp b/broadcastradio/common/utils2x/Utils.cpp
index 3e20b357..f292c085 100644
--- a/broadcastradio/common/utils2x/Utils.cpp
+++ b/broadcastradio/common/utils2x/Utils.cpp
@@ -215,7 +215,7 @@ bool isValid(const ProgramIdentifier& id) {
215 break; 215 break;
216 case IdentifierType::DAB_FREQUENCY: 216 case IdentifierType::DAB_FREQUENCY:
217 expect(val > 100000u, "f > 100MHz"); 217 expect(val > 100000u, "f > 100MHz");
218 // fallthrough 218 [[fallthrough]];
219 case IdentifierType::AMFM_FREQUENCY: 219 case IdentifierType::AMFM_FREQUENCY:
220 case IdentifierType::DRMO_FREQUENCY: 220 case IdentifierType::DRMO_FREQUENCY:
221 expect(val > 100u, "f > 100kHz"); 221 expect(val > 100u, "f > 100kHz");