From: Viktor UZLOV Date: Thu, 25 Feb 2021 07:47:35 +0000 (+0300) Subject: fix warnings. 64bit mode X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=refs%2Fheads%2Fvuzlov%2F20256;p=plugins%2Fhexablockplugin.git fix warnings. 64bit mode --- diff --git a/src/HEXABLOCKPlugin/HEXABLOCKPlugin_FromSkin_3D.cxx b/src/HEXABLOCKPlugin/HEXABLOCKPlugin_FromSkin_3D.cxx index 6e506f7..f2ea3dc 100644 --- a/src/HEXABLOCKPlugin/HEXABLOCKPlugin_FromSkin_3D.cxx +++ b/src/HEXABLOCKPlugin/HEXABLOCKPlugin_FromSkin_3D.cxx @@ -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();