Merge pull request #2106 from gdamiand/patch-1

Bugfix in copy face graph example
This commit is contained in:
Laurent Rineau 2017-05-19 10:30:07 +02:00
commit 358ad97730
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ int main(int argc, char* argv[])
CGAL::copy_face_graph(T1, S, std::inserter(v2v, v2v.end()), std::inserter(h2h, h2h.end()));
std::ofstream out("reverse.off");
out << T1;
out << S;
}
return 0;
}