]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android/platform-hardware-interfaces.git/blobdiff - confirmationui/support/src/cbor.cpp
Fix implicit fallthrough warnings.
[android/platform-hardware-interfaces.git] / confirmationui / support / src / cbor.cpp
index e7ea164d915b400416824c902f3ff17b4d0d3634..3685521c7b0cbed0a9940fff7aed424639188c91 100644 (file)
@@ -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;