diff options
author | meta <s@w23.at> | 2011-01-17 22:50:33 (GMT) |
---|---|---|
committer | meta <s@w23.at> | 2011-01-17 22:50:33 (GMT) |
commit | 163461f47cdfb9de4b6b79268537fbe432a2522d (patch) | |
tree | 3197bb87d8d50bc5c8f0f0a18a468e8ac8c77b37 | |
parent | 1b44be5a635859ca7dd8bbfd8b19b4e9403faa6c (diff) |
rename to fix a name clash with inner scope
-rw-r--r-- | src/nef2dxf.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nef2dxf.cc b/src/nef2dxf.cc index 44d7561..6191e5e 100644 --- a/src/nef2dxf.cc +++ b/src/nef2dxf.cc @@ -38,7 +38,7 @@ DxfData::DxfData(const struct CGAL_Nef_polyhedron &N) typedef Explorer::Halfedge_around_face_const_circulator heafcc_t; Explorer E = N.p2.explorer(); - for (fci_t fit = E.faces_begin(), fend = E.faces_end(); fit != fend; ++fit) + for (fci_t fit = E.faces_begin(), facesend = E.faces_end(); fit != facesend; ++fit) { heafcc_t fcirc(E.halfedge(fit)), fend(fcirc); int first_point = -1, last_point = -1; |