diff options
Diffstat (limited to 'src/cgalutils.cc')
-rw-r--r-- | src/cgalutils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgalutils.cc b/src/cgalutils.cc index e39c495..a1c7dc2 100644 --- a/src/cgalutils.cc +++ b/src/cgalutils.cc @@ -136,7 +136,7 @@ CGAL_Polyhedron *createPolyhedronFromPolySet(const PolySet &ps) CGAL_Build_PolySet builder(ps); P->delegate(builder); } - catch (CGAL::Assertion_exception e) { + catch (const CGAL::Assertion_exception &e) { PRINTB("CGAL error in CGAL_Build_PolySet: %s", e.what()); delete P; P = NULL; |