From 67dcff8a7f5a6d79849a20d227f576f3783809a3 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Sat, 11 May 2013 20:06:53 +0000
Subject: [PATCH] fix compile for occ 6.6

---
 Geo/OCCEdge.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Geo/OCCEdge.cpp b/Geo/OCCEdge.cpp
index e588e95489..a797f1b878 100644
--- a/Geo/OCCEdge.cpp
+++ b/Geo/OCCEdge.cpp
@@ -24,7 +24,7 @@
 #include <Geom_Circle.hxx>
 #include <Geom_Line.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>
 #else
 #include <BOPTools_AlgoTools.hxx>
@@ -335,7 +335,7 @@ void OCCEdge::replaceEndingPointsInternals(GVertex *g0, GVertex *g1)
     _replacement=E;
   }
   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);
 #else
     BOPTools_AlgoTools::MakeSplitEdge(aEx, aVR1, t1, aVR2, t2, _replacement);
-- 
GitLab