From: kgv Date: Mon, 7 Sep 2015 10:48:23 +0000 (+0300) Subject: BRepMesh_CircleInspector - fix vc12 compiler error after #0026593 X-Git-Tag: V7_0_0_beta~311 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=7c4740f8549d77b45dd3eaf7da3565f793a4fa1e;p=occt.git BRepMesh_CircleInspector - fix vc12 compiler error after #0026593 --- diff --git a/src/BRepMesh/BRepMesh_CircleTool.cxx b/src/BRepMesh/BRepMesh_CircleTool.cxx index 5697216273..9be1f518b0 100644 --- a/src/BRepMesh/BRepMesh_CircleTool.cxx +++ b/src/BRepMesh/BRepMesh_CircleTool.cxx @@ -50,7 +50,7 @@ BRepMesh_CircleTool::BRepMesh_CircleTool( const Handle(NCollection_IncAllocator)& theAllocator) : myTolerance (Precision::PConfusion() * Precision::PConfusion()), myAllocator (theAllocator), - myCellFilter(10, theAllocator), + myCellFilter(10.0, theAllocator), mySelector (myTolerance, 64, theAllocator) { } @@ -64,7 +64,7 @@ BRepMesh_CircleTool::BRepMesh_CircleTool( const Handle(NCollection_IncAllocator)& theAllocator) : myTolerance (Precision::PConfusion() * Precision::PConfusion()), myAllocator (theAllocator), - myCellFilter(10, theAllocator), + myCellFilter(10.0, theAllocator), mySelector (myTolerance, Max(theReservedSize, 64), theAllocator) { }