aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/marktree.c
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2021-07-06 03:59:27 +0200
committerGitHub <noreply@github.com>2021-07-05 18:59:27 -0700
commitdf33f30e8882b2bf692253d63f73fb602a13f888 (patch)
tree49a4a00b8782713adf5da4beda54700fa00e534e /src/nvim/marktree.c
parenta6cdfa27d50024a4756df37b135eadb5a8a79f13 (diff)
downloadrneovim-df33f30e8882b2bf692253d63f73fb602a13f888.tar.gz
rneovim-df33f30e8882b2bf692253d63f73fb602a13f888.tar.bz2
rneovim-df33f30e8882b2bf692253d63f73fb602a13f888.zip
clang/'Dead assignment': ignore warning #15000
This assignment is informative/documenting though technically unnecessary. https://github.com/neovim/neovim/pull/11900#discussion_r381860165 .
Diffstat (limited to 'src/nvim/marktree.c')
-rw-r--r--src/nvim/marktree.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/marktree.c b/src/nvim/marktree.c
index feb54eae4a..d0d843cbf8 100644
--- a/src/nvim/marktree.c
+++ b/src/nvim/marktree.c
@@ -905,6 +905,7 @@ continue_same_node:
refkey(b, enditr->node, enditr->i);
} else {
past_right = true; // NOLINT
+ (void)past_right;
break;
}
}