]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
SMDS: Minor style fixes.
authorPascal Obry <pascal.obry@edf.fr>
Thu, 20 Feb 2020 14:38:23 +0000 (15:38 +0100)
committervsr <vsr@opencascade.com>
Mon, 2 Mar 2020 10:58:10 +0000 (13:58 +0300)
src/SMDS/SMDS_UnstructuredGrid.cxx

index 1ebbc9b723c924441b11726984f128fd39ec0221..0a928ad11a5510f0bc2727a21ef37eec8a71c577 100644 (file)
@@ -46,7 +46,7 @@ void SMDS_CellLinks::ResizeForPoint(vtkIdType vtkID)
   if ( vtkID > this->MaxId )
   {
     this->MaxId = vtkID;
-    if ( vtkID >= this->Size ) 
+    if ( vtkID >= this->Size )
       vtkCellLinks::Resize( vtkID+SMDS_Mesh::chunkSize );
   }
 }
@@ -1204,4 +1204,3 @@ double SMDS_UnstructuredGrid::GetBallDiameter( vtkIdType vtkID ) const
     return vtkDoubleArray::SafeDownCast( vtkDataSet::CellData->GetScalars() )->GetValue( vtkID );
   return 0;
 }
-