mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
ugrid: Silence PVS/V625: UGRID_FOREACH_CELL may be used for one row
This commit is contained in:
parent
f9b728e2f8
commit
f50670aeff
@ -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++) { \
|
||||||
|
Loading…
Reference in New Issue
Block a user