diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-03-08 19:58:45 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-03-09 09:29:57 +0100 |
commit | 05f643f9d235b0db881acf94ce05ad3359ffb058 (patch) | |
tree | 99f5f801df3609f4c44dc89f8e1094a7b516f748 /src/nvim/ops.c | |
parent | f27068caad517c52e700477d51343cbebd8d4df0 (diff) | |
download | rneovim-05f643f9d235b0db881acf94ce05ad3359ffb058.tar.gz rneovim-05f643f9d235b0db881acf94ce05ad3359ffb058.tar.bz2 rneovim-05f643f9d235b0db881acf94ce05ad3359ffb058.zip |
chore(lgtm): fix "empty block without comment" warnings
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 3f51210781..09b00a1d91 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -7382,7 +7382,6 @@ const yankreg_T *op_reg_get(const char name) /// /// @return true on success, false on failure. bool op_reg_set_previous(const char name) - FUNC_ATTR_WARN_UNUSED_RESULT { int i = op_reg_index(name); if (i == -1) { |