Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 80c5b8fc authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh Committed by android-build-merger
Browse files

Fix implicit fallthrough warnings.

am: 40b77ef6

Change-Id: I0eee7ff35ef8943847d6966720a2c5477fc21fd0
parents 52be9f05 40b77ef6
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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;