From 9dcde5d7dd5afede2dd431a9ceab770ed6a46fac Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 3 May 2022 10:10:53 +0100 Subject: [PATCH] Add missing parameter --- .../include/CGAL/boost/graph/graph_traits_HalfedgeDS_default.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HalfedgeDS/include/CGAL/boost/graph/graph_traits_HalfedgeDS_default.h b/HalfedgeDS/include/CGAL/boost/graph/graph_traits_HalfedgeDS_default.h index 4fb87d5e33b..4fa5be5b9cf 100644 --- a/HalfedgeDS/include/CGAL/boost/graph/graph_traits_HalfedgeDS_default.h +++ b/HalfedgeDS/include/CGAL/boost/graph/graph_traits_HalfedgeDS_default.h @@ -82,7 +82,7 @@ out_degree(typename boost::graph_traits< HalfedgeDS_default const>::verte template typename boost::graph_traits< HalfedgeDS_default const>::degree_size_type in_degree(typename boost::graph_traits< HalfedgeDS_default const>::vertex_descriptor v - , const HalfedgeDS_default&) + , const HalfedgeDS_default& hds) { return degree(v,hds); }