From 6d8ae4661837b7e181b85c4bbe2884173f344c51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Mon, 25 Nov 2019 09:24:23 +0100 Subject: [PATCH] Fix unused variable warning --- .../include/CGAL/_test_cls_constrained_triangulation_2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Triangulation_2/test/Triangulation_2/include/CGAL/_test_cls_constrained_triangulation_2.h b/Triangulation_2/test/Triangulation_2/include/CGAL/_test_cls_constrained_triangulation_2.h index b1616729e7e..eaa9e936e1c 100644 --- a/Triangulation_2/test/Triangulation_2/include/CGAL/_test_cls_constrained_triangulation_2.h +++ b/Triangulation_2/test/Triangulation_2/include/CGAL/_test_cls_constrained_triangulation_2.h @@ -45,7 +45,7 @@ _test_cdt_throwing(const Pt& p0, const Pt& p1, const Pt& p2, const Pt& p3, tr.insert_constraint(p0, p1); tr.insert_constraint(p2, p3); } - catch (typename Triang::Intersection_of_constraints_exception& e) + catch (typename Triang::Intersection_of_constraints_exception& /*e*/) { std::cout << "threw, expected: " << intersection_type << std::endl;