fix for paraview 64bit

This commit is contained in:
Viktor UZLOV 2021-02-17 12:05:47 +03:00
parent 23f07f30a3
commit ac0ffa0a64

View File

@ -2934,7 +2934,7 @@ void SMDS_Mesh::dumpGrid(std::string ficdump)
}
int nbCells = myGrid->GetNumberOfCells();
ficcon << "-------------------------------- cells " << nbCells << endl;
for (int i=0; i<nbCells; i++)
for (vtkIdType i=0; i<nbCells; i++)
{
ficcon << i << " - " << myGrid->GetCell(i)->GetCellType() << " -";
int nbptcell = myGrid->GetCell(i)->GetNumberOfPoints();