ugrid: Silence PVS/V625: UGRID_FOREACH_CELL may be used for one row

This commit is contained in:
ZyX 2018-04-22 20:18:29 +03:00
parent f9b728e2f8
commit f50670aeff

View File

@ -23,6 +23,8 @@ struct ugrid {
UCell **cells;
};
// -V:UGRID_FOREACH_CELL:625
#define UGRID_FOREACH_CELL(grid, top, bot, left, right, code) \
do { \
for (int row = top; row <= bot; row++) { \