neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 128e194f64b0c70f01a48d11e6b41781104f7ca3
parent be83cd73b274ef9d81ff45f5f833ee8ac2ffc01e
Author: dundargoc <gocdundar@gmail.com>
Date:   Sat, 11 Nov 2023 11:06:58 +0100

fix(PVS/V1001): variable is assigned but is not used

Diffstat:
Msrc/nvim/option.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nvim/option.c b/src/nvim/option.c @@ -3614,7 +3614,7 @@ static const char *did_set_option(int opt_idx, void *varp, OptVal old_value, Opt } // Unset new_value as it is no longer valid. - new_value = NIL_OPTVAL; // NOLINT(clang-analyzer-deadcode.DeadStores) + new_value = NIL_OPTVAL; // -V1001 NOLINT(clang-analyzer-deadcode.DeadStores) return errmsg; }