From dca969665f96cebc79197b31d2bdbd683eba39b5 Mon Sep 17 00:00:00 2001 From: Monique Teillaud Date: Wed, 25 Nov 1998 13:27:59 +0000 Subject: [PATCH] bug fix : typo in Cell_circulator& operator--() --- .../include/CGAL/Triangulation_ds_circulators_3.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packages/Triangulation_3/include/CGAL/Triangulation_ds_circulators_3.h b/Packages/Triangulation_3/include/CGAL/Triangulation_ds_circulators_3.h index 2c59f3236e9..567d8538c5b 100644 --- a/Packages/Triangulation_3/include/CGAL/Triangulation_ds_circulators_3.h +++ b/Packages/Triangulation_3/include/CGAL/Triangulation_ds_circulators_3.h @@ -102,8 +102,8 @@ public: Cell_circulator& operator--() { CGAL_triangulation_precondition( (pos != NULL) ); // then prev != NULL too - int i = prev->index(_e.first->vertex(e.second)); - int j = prev->index(_e.first->vertex(e.third)); + int i = prev->index(_e.first->vertex(_e.second)); + int j = prev->index(_e.first->vertex(_e.third)); int k = other(i,j); Cell * tmp = prev; Cell * n = prev->neighbor(k);