diff options
author | meta <s@w23.at> | 2011-01-17 21:38:18 (GMT) |
---|---|---|
committer | meta <s@w23.at> | 2011-01-17 21:38:18 (GMT) |
commit | 1b44be5a635859ca7dd8bbfd8b19b4e9403faa6c (patch) | |
tree | 07d6be5fdf194d514bc06194a481e08d31203567 | |
parent | e63576ce1aa85b7149f37a1f896a84f17ae58a7d (diff) |
rename to fix a name clash with inner scope
-rw-r--r-- | src/mainwin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index 7645860..3373122 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -1467,7 +1467,7 @@ static void renderGLviaCGAL(void *vp) glColor3f(col2.redF(), col2.greenF(), col2.blueF()); // Extract the boundary, including inner boundaries of the polygons - 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) { bool fset = false; double fx = 0.0, fy = 0.0; |