1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0025849: Warnings on OCCT and PRODUCTS in 64-bit

Fix warnings.
This commit is contained in:
apn 2015-02-20 18:30:35 +03:00 committed by bugmaster
parent e94f2bfb11
commit 50f32555af

View File

@ -62,7 +62,7 @@ IVtk_ShapeIdList IVtkOCC_Shape::GetSubIds (const IVtk_IdType theId) const
{
IVtk_ShapeIdList aRes;
// Get the sub-shape by the given id.
TopoDS_Shape aShape = mySubShapeIds.FindKey (theId);
TopoDS_Shape aShape = mySubShapeIds.FindKey ((Standard_Integer) theId);
TopAbs_ShapeEnum aShapeType = aShape.ShapeType();
if (aShapeType == TopAbs_VERTEX || aShapeType == TopAbs_EDGE ||
aShapeType == TopAbs_FACE)
@ -106,7 +106,7 @@ IVtk_ShapeIdList IVtkOCC_Shape::GetSubIds (const IVtk_IdType theId) const
//============================================================================
const TopoDS_Shape& IVtkOCC_Shape::GetSubShape (const IVtk_IdType theId) const
{
return mySubShapeIds.FindKey (theId);
return mySubShapeIds.FindKey ((Standard_Integer) theId);
}
//============================================================================