| 07c565c5 | 31-Oct-2023 |
Jose E. Roman <jroman@dsic.upv.es> |
Fix compile warning
petsc/src/dm/impls/plex/plexcreate.c(2423): error #823: reference is to variable "c" (declared at line 2340) -- under old for-init scoping rules it would have been variable "c" (
Fix compile warning
petsc/src/dm/impls/plex/plexcreate.c(2423): error #823: reference is to variable "c" (declared at line 2340) -- under old for-init scoping rules it would have been variable "c" (declared at line 2356) for (c = 0; c < numCells; c++) PetscCall(DMPlexSetConeSize(dm, c, embedDim)); ^
show more ...
|