diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-26 22:31:11 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-26 22:31:11 (GMT) |
commit | 47bd0b639b4adf4a20f901bd93ac235e77bd2df4 (patch) | |
tree | 4f980b1d7cb32a6c87df31f0904196e69b42e2ea /src/CGAL_Nef_polyhedron.h | |
parent | c6a6ad46da7cb349422eefbec6bf37a55e9f8cc5 (diff) |
bugfix: We didn't correctly set back CGAL error behaviour after changing it
Diffstat (limited to 'src/CGAL_Nef_polyhedron.h')
-rw-r--r-- | src/CGAL_Nef_polyhedron.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CGAL_Nef_polyhedron.h b/src/CGAL_Nef_polyhedron.h index fda4bc5..f93905f 100644 --- a/src/CGAL_Nef_polyhedron.h +++ b/src/CGAL_Nef_polyhedron.h @@ -8,8 +8,8 @@ class CGAL_Nef_polyhedron { public: CGAL_Nef_polyhedron() : dim(0) {} - CGAL_Nef_polyhedron(CGAL_Nef_polyhedron2 *p) : dim(2), p2(p) {} - CGAL_Nef_polyhedron(CGAL_Nef_polyhedron3 *p) : dim(3), p3(p) {} + CGAL_Nef_polyhedron(CGAL_Nef_polyhedron2 *p); + CGAL_Nef_polyhedron(CGAL_Nef_polyhedron3 *p); ~CGAL_Nef_polyhedron() {} bool empty() const { return (dim == 0 || (!p2 && !p3)); } |