diff options
author | dundargoc <gocdundar@gmail.com> | 2024-01-01 15:56:00 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-01-01 19:57:44 +0100 |
commit | b49d4e18a67d16548fa72013237a87564656170e (patch) | |
tree | 86c1f17eac78ecff4a292e43df9157ba51295f59 /src/nvim/eval/typval.h | |
parent | f69658bc355e130fc2845a8e0edc8baa4f256329 (diff) | |
download | rneovim-b49d4e18a67d16548fa72013237a87564656170e.tar.gz rneovim-b49d4e18a67d16548fa72013237a87564656170e.tar.bz2 rneovim-b49d4e18a67d16548fa72013237a87564656170e.zip |
refactor: remove redundant NOLINT comments
Diffstat (limited to 'src/nvim/eval/typval.h')
-rw-r--r-- | src/nvim/eval/typval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval/typval.h b/src/nvim/eval/typval.h index 0013c8ffe5..0928fdea62 100644 --- a/src/nvim/eval/typval.h +++ b/src/nvim/eval/typval.h @@ -360,7 +360,7 @@ extern bool tv_in_free_unref_items; /// @param li Name of the variable with current listitem_T entry. /// @param code Cycle body. #define TV_LIST_ITER(l, li, code) \ - TV_LIST_ITER_MOD( , l, li, code) // NOLINT(whitespace/parens) + TV_LIST_ITER_MOD( , l, li, code) /// Iterate over a list /// |