From 24fc57c7430de7d40760c9cd538b6e49083c28ca Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Mon, 14 May 2018 13:08:27 -0300 Subject: [PATCH] Removed one last remaining BOPCol_ListOfShapes Replaced one last remaining BOPCol_ListOfShapes with TopTools_ListOfShapes (deprecated in OCC7.3) --- src/ifcgeom/IfcGeomFunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcgeom/IfcGeomFunctions.cpp b/src/ifcgeom/IfcGeomFunctions.cpp index ffe67d8959..761452a20c 100644 --- a/src/ifcgeom/IfcGeomFunctions.cpp +++ b/src/ifcgeom/IfcGeomFunctions.cpp @@ -2437,7 +2437,7 @@ bool IfcGeom::Kernel::split_solid_by_shell(const TopoDS_Shape& input, const Topo } apply_tolerance(solid, getValue(GV_PRECISION)); - BOPCol_ListOfShape shapes; + TopTools_ListOfShape shapes; shapes.Append(input); shapes.Append(solid); BOPAlgo_PaveFiller filler(new NCollection_IncAllocator); // TODO: Does this need to be freed?