Skip to content
Snippets Groups Projects
Commit 67dcff8a authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix compile for occ 6.6

parent 38217260
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include <Geom_Circle.hxx> #include <Geom_Circle.hxx>
#include <Geom_Line.hxx> #include <Geom_Line.hxx>
#include <Geom_Conic.hxx> #include <Geom_Conic.hxx>
#if (OCC_VERSION_MAJOR == 6) && (OCC_VERSION_MINOR < 5) #if (OCC_VERSION_MAJOR == 6) && (OCC_VERSION_MINOR < 6)
#include <BOPTools_Tools.hxx> #include <BOPTools_Tools.hxx>
#else #else
#include <BOPTools_AlgoTools.hxx> #include <BOPTools_AlgoTools.hxx>
...@@ -335,7 +335,7 @@ void OCCEdge::replaceEndingPointsInternals(GVertex *g0, GVertex *g1) ...@@ -335,7 +335,7 @@ void OCCEdge::replaceEndingPointsInternals(GVertex *g0, GVertex *g1)
_replacement=E; _replacement=E;
} }
else { else {
#if (OCC_VERSION_MAJOR == 6) && (OCC_VERSION_MINOR < 5) #if (OCC_VERSION_MAJOR == 6) && (OCC_VERSION_MINOR < 6)
BOPTools_Tools::MakeSplitEdge(aEx, aVR1, t1, aVR2, t2, _replacement); BOPTools_Tools::MakeSplitEdge(aEx, aVR1, t1, aVR2, t2, _replacement);
#else #else
BOPTools_AlgoTools::MakeSplitEdge(aEx, aVR1, t1, aVR2, t2, _replacement); BOPTools_AlgoTools::MakeSplitEdge(aEx, aVR1, t1, aVR2, t2, _replacement);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment