Remove auto keyword

This commit is contained in:
Thomas Krijnen
2017-10-06 16:01:18 +02:00
parent c38ac108cc
commit 25d68d320d
+1 -1
View File
@@ -1208,7 +1208,7 @@ IfcGeom::BRepElement<P>* IfcGeom::Kernel::create_brep_for_representation_and_pro
const IfcSchema::IfcMaterial* single_material = get_single_material_association(product);
if (single_material) {
const IfcGeom::SurfaceStyle* s = get_style(single_material);
for (auto it = shapes.begin(); it != shapes.end(); ++it) {
for (IfcGeom::IfcRepresentationShapeItems::iterator it = shapes.begin(); it != shapes.end(); ++it) {
if (!it->hasStyle() && s) {
it->setStyle(s);
material_style_applied = true;