Skip to content
Snippets Groups Projects
Commit b603d917 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent fd3e1e75
No related branches found
No related tags found
No related merge requests found
...@@ -2398,7 +2398,8 @@ int GModel::writeDIFF(const std::string &name, bool binary, bool saveAll, ...@@ -2398,7 +2398,8 @@ int GModel::writeDIFF(const std::string &name, bool binary, bool saveAll,
// models with incomplete topology. For example, when we merge 2 STL // models with incomplete topology. For example, when we merge 2 STL
// triangulations we don't have the boundary information between the // triangulations we don't have the boundary information between the
// faces, and the vertices would end up categorized on either one.) // faces, and the vertices would end up categorized on either one.)
std::list<int> vertexTags[numVertices], boundaryIndicators; std::vector<std::list<int> > vertexTags(numVertices);
std::list<int> boundaryIndicators;
int numBoundaryIndicators = 0; int numBoundaryIndicators = 0;
for(riter it = firstRegion(); it != lastRegion(); it++){ for(riter it = firstRegion(); it != lastRegion(); it++){
std::list<GFace*> faces = (*it)->faces(); std::list<GFace*> faces = (*it)->faces();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment