diff options
author | James McCoy <jamessan@jamessan.com> | 2020-08-28 00:00:59 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2020-09-04 10:59:16 -0400 |
commit | 74ad66404fff6ea4a5ffa219855deed1ebeb383e (patch) | |
tree | de9e9682ac7e0cadb227a9c82d9ab1e6eebdc868 | |
parent | 2516386c6b40f5c313d33f838facb40ce5796b23 (diff) | |
download | rneovim-74ad66404fff6ea4a5ffa219855deed1ebeb383e.tar.gz rneovim-74ad66404fff6ea4a5ffa219855deed1ebeb383e.tar.bz2 rneovim-74ad66404fff6ea4a5ffa219855deed1ebeb383e.zip |
suggest_trie_walk: Remove invalid FALLTHROUGH annotation
-rw-r--r-- | src/nvim/spell.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/spell.c b/src/nvim/spell.c index 05bb501fa2..dc1bfe25b4 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -4405,8 +4405,6 @@ static void suggest_trie_walk(suginfo_T *su, langp_T *lp, char_u *fword, bool so } break; - FALLTHROUGH; - case STATE_INS: // Insert one byte. Repeat this for each possible byte at this // node. |