Remove auto keywords

This commit is contained in:
Thomas Krijnen
2017-06-20 19:47:53 +02:00
parent 101ef69ae9
commit 23beb096a0
+2 -2
View File
@@ -479,9 +479,9 @@ int convert_to_ifc(const TopoDS_Shape& s, U*& item, bool advanced) {
faces->push(f); faces->push(f);
} else { } else {
/// Cleanup: /// Cleanup:
for (auto it = faces->begin(); it != faces->end(); ++it) { for (IfcSchema::IfcFace::list::it it = faces->begin(); it != faces->end(); ++it) {
IfcEntityList::ptr data = IfcParse::traverse(*it)->unique(); IfcEntityList::ptr data = IfcParse::traverse(*it)->unique();
for (auto jt = data->begin(); jt != data->end(); ++jt) { for (IfcEntityList::it jt = data->begin(); jt != data->end(); ++jt) {
delete *jt; delete *jt;
} }
} }