From 8e9b2d2c491ccafd5cb14919f750aa537ebdcc04 Mon Sep 17 00:00:00 2001 From: don bright Date: Fri, 20 Jul 2012 09:00:14 +0200 Subject: [PATCH] fix typo --- src/CGAL_Nef_polyhedron.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CGAL_Nef_polyhedron.h b/src/CGAL_Nef_polyhedron.h index 64ee9eb0..694b4207 100644 --- a/src/CGAL_Nef_polyhedron.h +++ b/src/CGAL_Nef_polyhedron.h @@ -14,7 +14,7 @@ public: ~CGAL_Nef_polyhedron() {} bool empty() const { return (dim == 0 || (!p2 && !p3)); } - void reset() { dim=0; p2.rest(); p3.reset(); } + void reset() { dim=0; p2.reset(); p3.reset(); } CGAL_Nef_polyhedron &operator+=(const CGAL_Nef_polyhedron &other); CGAL_Nef_polyhedron &operator*=(const CGAL_Nef_polyhedron &other); CGAL_Nef_polyhedron &operator-=(const CGAL_Nef_polyhedron &other);