mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 01:16:31 +00:00
ugrid: Silence PVS/V625: UGRID_FOREACH_CELL may be used for one row
This commit is contained in:
@@ -23,6 +23,8 @@ struct ugrid {
|
|||||||
UCell **cells;
|
UCell **cells;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// -V:UGRID_FOREACH_CELL:625
|
||||||
|
|
||||||
#define UGRID_FOREACH_CELL(grid, top, bot, left, right, code) \
|
#define UGRID_FOREACH_CELL(grid, top, bot, left, right, code) \
|
||||||
do { \
|
do { \
|
||||||
for (int row = top; row <= bot; row++) { \
|
for (int row = top; row <= bot; row++) { \
|
||||||
|
Reference in New Issue
Block a user