]> SALOME platform Git repositories - plugins/hexablockplugin.git/commitdiff
Salome HOME
bos #20256: [CEA 18523] Porting SMESH to int 64 bits occ/20256_v2 V9_7_0a1 V9_7_0a2 V9_7_0b1
authoreap <eap@opencascade.com>
Wed, 17 Mar 2021 15:50:20 +0000 (18:50 +0300)
committervsr <vsr@opencascade.com>
Mon, 19 Apr 2021 14:35:52 +0000 (17:35 +0300)
src/HEXABLOCKPlugin/HEXABLOCKPlugin_FromSkin_3D.cxx

index fb0bbbfb59ae8cc2c0ed46e4ce01f69e49a93115..2814f2ca517e4d65a3ef3522ab0d5e9879052605 100644 (file)
@@ -409,7 +409,7 @@ namespace
     // Find all block sides starting from mesh faces sharing the corner node
     // --------------------------------------------------------------------
 
-    int nbFacesOnSides = 0;
+    smIdType nbFacesOnSides = 0;
     TIDSortedElemSet cornerFaces; // corner faces of found _BlockSide's
     std::list< const SMDS_MeshNode* > corners( 1, nCorner );
     std::list< const SMDS_MeshNode* >::iterator corner = corners.begin();
@@ -1526,7 +1526,7 @@ bool SMESH_HexaFromSkin_3D::Evaluate(SMESH_Mesh &         aMesh,
   bool secondOrder = aMesh.NbFaces( ORDER_QUADRATIC );
 
   int entity = secondOrder ? SMDSEntity_Quad_Hexa : SMDSEntity_Hexa;
-  std::vector<int>& nbByType = aResMap[ aMesh.GetSubMesh( aShape )];
+  std::vector<smIdType>& nbByType = aResMap[ aMesh.GetSubMesh( aShape )];
   if ( entity >= nbByType.size() )
     nbByType.resize( SMDSEntity_Last, 0 );