mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Clutter the code with "fall-through" comments in order to suppress nuisance
compiler warnings. No logic changes. FossilOrigin-Name: 05d2cf5e90d2a6b8e7fbcdb9e12e7c1281db7cfbe212997bd63c8aa66797edda
This commit is contained in:
@@ -3654,11 +3654,16 @@ case OP_MakeRecord: {
|
||||
switch( len ){
|
||||
default: zPayload[7] = (u8)(v&0xff); v >>= 8;
|
||||
zPayload[6] = (u8)(v&0xff); v >>= 8;
|
||||
/* no break */ deliberate_fall_through
|
||||
case 6: zPayload[5] = (u8)(v&0xff); v >>= 8;
|
||||
zPayload[4] = (u8)(v&0xff); v >>= 8;
|
||||
/* no break */ deliberate_fall_through
|
||||
case 4: zPayload[3] = (u8)(v&0xff); v >>= 8;
|
||||
/* no break */ deliberate_fall_through
|
||||
case 3: zPayload[2] = (u8)(v&0xff); v >>= 8;
|
||||
/* no break */ deliberate_fall_through
|
||||
case 2: zPayload[1] = (u8)(v&0xff); v >>= 8;
|
||||
/* no break */ deliberate_fall_through
|
||||
case 1: zPayload[0] = (u8)(v&0xff);
|
||||
}
|
||||
zPayload += len;
|
||||
|
Reference in New Issue
Block a user