diff options
author | drh <> | 2024-01-16 15:04:19 +0000 |
---|---|---|
committer | drh <> | 2024-01-16 15:04:19 +0000 |
commit | 6ad928d91d06d2738ffa2eecaea07a7477a88781 (patch) | |
tree | 8e18387ab47cf6fc9fae738b96245ac0c1326f87 /src/json.c | |
parent | 9239fb59ad74b1fee03ea99e86dddf3726dd7bf4 (diff) | |
download | sqlite-6ad928d91d06d2738ffa2eecaea07a7477a88781.tar.gz sqlite-6ad928d91d06d2738ffa2eecaea07a7477a88781.zip |
Clutter the code with "fall-through" comments in order to suppress nuisance
compiler warnings. No logic changes.
FossilOrigin-Name: 05d2cf5e90d2a6b8e7fbcdb9e12e7c1281db7cfbe212997bd63c8aa66797edda
Diffstat (limited to 'src/json.c')
-rw-r--r-- | src/json.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/json.c b/src/json.c index 682f30597..97cf5fe28 100644 --- a/src/json.c +++ b/src/json.c @@ -1911,6 +1911,7 @@ json_parse_restart: return i+4; } /* fall-through into the default case that checks for NaN */ + /* no break */ deliberate_fall_through } default: { u32 k; |