From 24e454ce0c96efddf68fc14246772a9c251039fa Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 15 Jul 2026 16:51:38 +0500 Subject: [PATCH] build-all: drop unused occt patch Introduced in e21277e80, reference removed in 683cadeb7 when occt was bumped to 7.3.0 and switched to git-tag based download. --- nix/patches/occt/88af392.patch | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 nix/patches/occt/88af392.patch 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); - } -