From 40b77ef6b553f4d2265c7427f1357a25fa14b30b Mon Sep 17 00:00:00 2001 From: Chih-Hung Hsieh Date: Fri, 12 Oct 2018 15:44:27 -0700 Subject: [PATCH] Fix implicit fallthrough warnings. Test: make checkbuild Bug: 112564944 Change-Id: Iaaa0e2c325e860572d058ae27a7ad7dc00134564 --- confirmationui/support/src/cbor.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/confirmationui/support/src/cbor.cpp b/confirmationui/support/src/cbor.cpp index e7ea164d..3685521c 100644 --- a/confirmationui/support/src/cbor.cpp +++ b/confirmationui/support/src/cbor.cpp @@ -36,11 +36,14 @@ WriteState writeBytes(WriteState state, uint64_t value, uint8_t size) { *pos++ = getByte(value, 6); *pos++ = getByte(value, 5); *pos++ = getByte(value, 4); + [[fallthrough]]; case 4: *pos++ = getByte(value, 3); *pos++ = getByte(value, 2); + [[fallthrough]]; case 2: *pos++ = getByte(value, 1); + [[fallthrough]]; case 1: *pos++ = value; break; -- 2.39.2