aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/quickfix.c
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-01-01 15:56:00 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-01-01 19:57:44 +0100
commitb49d4e18a67d16548fa72013237a87564656170e (patch)
tree86c1f17eac78ecff4a292e43df9157ba51295f59 /src/nvim/quickfix.c
parentf69658bc355e130fc2845a8e0edc8baa4f256329 (diff)
downloadrneovim-b49d4e18a67d16548fa72013237a87564656170e.tar.gz
rneovim-b49d4e18a67d16548fa72013237a87564656170e.tar.bz2
rneovim-b49d4e18a67d16548fa72013237a87564656170e.zip
refactor: remove redundant NOLINT comments
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r--src/nvim/quickfix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c
index 0bd8ef6bcd..9d78a570bb 100644
--- a/src/nvim/quickfix.c
+++ b/src/nvim/quickfix.c
@@ -272,7 +272,7 @@ enum { QF_WINHEIGHT = 10, }; ///< default height for quickfix window
// Macro to loop through all the items in a quickfix list
// Quickfix item index starts from 1, so i below starts at 1
#define FOR_ALL_QFL_ITEMS(qfl, qfp, i) \
- for ((i) = 1, (qfp) = (qfl)->qf_start; /* NOLINT(readability/braces) */ \
+ for ((i) = 1, (qfp) = (qfl)->qf_start; \
!got_int && (i) <= (qfl)->qf_count && (qfp) != NULL; \
(i)++, (qfp) = (qfp)->qf_next)