mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-28 02:10:35 +05:00
fix for paraview 64bit
This commit is contained in:
parent
23f07f30a3
commit
ac0ffa0a64
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user