| e4ebd542 | 22-Mar-2024 |
Jose E. Roman <jroman@dsic.upv.es> |
Fix compile warning in bddcgraph.c (Intel C++)
petsc/src/ksp/pc/impls/bddc/bddcgraph.c(1101): error #823: reference is to variable "i" (declared at line 732) -- under old for-init scoping rules it w
Fix compile warning in bddcgraph.c (Intel C++)
petsc/src/ksp/pc/impls/bddc/bddcgraph.c(1101): error #823: reference is to variable "i" (declared at line 732) -- under old for-init scoping rules it would have been variable "i" (declared at line 1086) for (i = 0, mss = 0; i < graph->n_subsets; i++) mss = PetscMax(graph->subset_size[i], mss); ^ petsc/src/ksp/pc/impls/bddc/bddcgraph.c(1101): error #823: reference is to variable "i" (declared at line 732) -- under old for-init scoping rules it would have been variable "i" (declared at line 1086) for (i = 0, mss = 0; i < graph->n_subsets; i++) mss = PetscMax(graph->subset_size[i], mss); ^
show more ...
|