diff --git a/nix/patches/occt/88af392.patch b/nix/patches/occt/88af392.patch deleted file mode 100644 index 72c72287c0..0000000000 --- a/nix/patches/occt/88af392.patch +++ /dev/null @@ -1,32 +0,0 @@ -http://git.dev.opencascade.org/gitweb/?p=occt.git;a=commitdiff;h=0ab4e621833f4eae945a3762c9a29ee12e2eec53#patch1 -diff --git a/src/HLRBRep/HLRBRep_InternalAlgo.cxx b/src/HLRBRep/HLRBRep_InternalAlgo.cxx -index ca885ca..c13cb06 100644 (file) ---- a/src/HLRBRep/HLRBRep_InternalAlgo.cxx -+++ b/src/HLRBRep/HLRBRep_InternalAlgo.cxx -@@ -165,7 +165,7 @@ void HLRBRep_InternalAlgo::Update () - SB.Bounds(v1,v2,e1,e2,f1,f2); - - for (Standard_Integer e = e1; e <= e2; e++) { -- HLRBRep_EdgeData ed = aEDataArray.ChangeValue(e); -+ HLRBRep_EdgeData& ed = aEDataArray.ChangeValue(e); - HLRAlgo::DecodeMinMax(ed.MinMax(), TheMin, TheMax); - if (FirstTime) { - FirstTime = Standard_False; -@@ -307,7 +307,7 @@ void HLRBRep_InternalAlgo::InitEdgeStatus () - Standard_Integer nf = myDS->NbFaces(); - - for (Standard_Integer e = 1; e <= ne; e++) { -- HLRBRep_EdgeData ed = aEDataArray.ChangeValue(e); -+ HLRBRep_EdgeData& ed = aEDataArray.ChangeValue(e); - if (ed.Selected()) ed.Status().ShowAll(); - } - // for (Standard_Integer f = 1; f <= nf; f++) { -@@ -368,7 +368,7 @@ void HLRBRep_InternalAlgo::Select () - Standard_Integer nf = myDS->NbFaces(); - - for (Standard_Integer e = 1; e <= ne; e++) { -- HLRBRep_EdgeData ed = aEDataArray.ChangeValue(e); -+ HLRBRep_EdgeData& ed = aEDataArray.ChangeValue(e); - ed.Selected(Standard_True); - } -