From fe4ab358e506d1a30554d4f9e80506f653c8bfa0 Mon Sep 17 00:00:00 2001 From: Sebastian Hoogen Date: Thu, 8 Jan 2015 08:56:09 +0100 Subject: [PATCH] issue #1450 --- src/Mod/Part/App/modelRefine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Part/App/modelRefine.cpp b/src/Mod/Part/App/modelRefine.cpp index ae3455cd6..2a7adb3d7 100644 --- a/src/Mod/Part/App/modelRefine.cpp +++ b/src/Mod/Part/App/modelRefine.cpp @@ -739,7 +739,7 @@ FaceTypedCylinder& ModelRefine::getCylinderObject() ///////////////////////////////////////////////////////////////////////////////////////////////////////// // TODO: change this version after occ fix. Freecad Mantis 1450 -#if OCC_VERSION_HEX <= 0x070000 +#if OCC_VERSION_HEX <= 0x7fffff void collectConicEdges(const TopoDS_Shell &shell, TopTools_IndexedMapOfShape &map) { TopTools_IndexedMapOfShape edges; @@ -1026,7 +1026,7 @@ bool FaceUniter::process() BRepLib_FuseEdges edgeFuse(workShell); // TODO: change this version after occ fix. Freecad Mantis 1450 -#if OCC_VERSION_HEX <= 0x070000 +#if OCC_VERSION_HEX <= 0x7fffff TopTools_IndexedMapOfShape map; collectConicEdges(workShell, map); edgeFuse.AvoidEdges(map);