From 3d2ab25175803490e9cf14e2130d22ca51946b9c Mon Sep 17 00:00:00 2001 From: iras Date: Thu, 5 May 2016 08:09:45 +0100 Subject: [PATCH] separated nested argument lists to avoid an error when compiling with gcc. --- src/ifcgeom/IfcGeomElement.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcgeom/IfcGeomElement.h b/src/ifcgeom/IfcGeomElement.h index b363c38e1a..35477316ff 100644 --- a/src/ifcgeom/IfcGeomElement.h +++ b/src/ifcgeom/IfcGeomElement.h @@ -129,9 +129,9 @@ namespace IfcGeom { const boost::shared_ptr< Representation::Triangulation

>& geometry_pointer() const { return _geometry; } TriangulationElement(const BRepElement

& shape_model) : Element

(shape_model) - , _geometry(boost::shared_ptr>(new Representation::Triangulation

(shape_model.geometry()))) + , _geometry(boost::shared_ptr >(new Representation::Triangulation

(shape_model.geometry()))) {} - TriangulationElement(const Element

& element, const boost::shared_ptr>& geometry) + TriangulationElement(const Element

& element, const boost::shared_ptr >& geometry) : Element

(element) , _geometry(geometry) {}