From f4fd3a5ca1c1c3449e11934c82827c6a03b95eca Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sun, 12 Jun 2016 10:43:28 +0200 Subject: [PATCH] Compiler warnings --- src/ifcparse/IfcHierarchyHelper.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ifcparse/IfcHierarchyHelper.cpp b/src/ifcparse/IfcHierarchyHelper.cpp index ccaec9b587..b97013a328 100644 --- a/src/ifcparse/IfcHierarchyHelper.cpp +++ b/src/ifcparse/IfcHierarchyHelper.cpp @@ -244,8 +244,8 @@ IfcSchema::IfcBuildingStorey* IfcHierarchyHelper::addBuildingProduct(IfcSchema:: } void IfcHierarchyHelper::addExtrudedPolyline(IfcSchema::IfcShapeRepresentation* rep, const std::vector >& points, double h, - IfcSchema::IfcAxis2Placement2D* place, IfcSchema::IfcAxis2Placement3D* place2, - IfcSchema::IfcDirection* dir, IfcSchema::IfcRepresentationContext* context) + IfcSchema::IfcAxis2Placement2D* /*place*/, IfcSchema::IfcAxis2Placement3D* place2, + IfcSchema::IfcDirection* dir, IfcSchema::IfcRepresentationContext* /*context*/) { IfcSchema::IfcCartesianPoint::list::ptr cartesian_points (new IfcSchema::IfcCartesianPoint::list); for (std::vector >::const_iterator i = points.begin(); i != points.end(); ++i) { @@ -312,7 +312,7 @@ void IfcHierarchyHelper::addBox(IfcSchema::IfcShapeRepresentation* rep, double w } } -void IfcHierarchyHelper::addAxis(IfcSchema::IfcShapeRepresentation* rep, double l, IfcSchema::IfcRepresentationContext* context) { +void IfcHierarchyHelper::addAxis(IfcSchema::IfcShapeRepresentation* rep, double l, IfcSchema::IfcRepresentationContext* /*context*/) { IfcSchema::IfcCartesianPoint* p1 = addDoublet(-l / 2., 0.); IfcSchema::IfcCartesianPoint* p2 = addDoublet(+l / 2., 0.); IfcSchema::IfcCartesianPoint::list::ptr pts(new IfcSchema::IfcCartesianPoint::list);