mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Fix implicit fallthrough warnings. am: 40b77ef6b5
am: 80c5b8fc76
Change-Id: I52755c761e883d3c3f30d81bda5002cb9be29bcf
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user