fix streamreader::end definition for iterators.

This commit is contained in:
Kim Kulling
2018-12-30 10:44:43 +01:00
parent a8fda89079
commit 281c191367
2 changed files with 5 additions and 4 deletions

View File

@@ -842,7 +842,7 @@ aiNode* ProcessSpatialStructure(aiNode* parent, const Schema_2x3::IfcProduct& el
nd->mChildren = new aiNode*[subnodes.size()]();
for(aiNode* nd2 : subnodes) {
nd->mChildren[nd->mNumChildren++] = nd2;
nd2->mParent = nd.get();
nd2->mParent = nd;
}
}
} catch(...) {