]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
fix for paraview 64bit
authorViktor UZLOV <vuzlov@debian10-01.nnov.opencascade.com>
Wed, 17 Feb 2021 09:05:47 +0000 (12:05 +0300)
committerViktor UZLOV <vuzlov@debian10-01.nnov.opencascade.com>
Wed, 17 Feb 2021 09:05:47 +0000 (12:05 +0300)
src/SMDS/SMDS_Mesh.cxx

index 624c4ad24092da11580f0d4207ac5d733a92ff4a..10f3e1f5780b8bb97ecb8c255b7395f6aa310680 100644 (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();