From 88606e4110a189aa284184ae06b69bf5c0d20ca2 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 26 Apr 2019 11:18:26 +0200 Subject: [PATCH] Fix documentation --- Polygon/include/CGAL/Polygon_2.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Polygon/include/CGAL/Polygon_2.h b/Polygon/include/CGAL/Polygon_2.h index 612c4c1e945..813fa59cdcf 100644 --- a/Polygon/include/CGAL/Polygon_2.h +++ b/Polygon/include/CGAL/Polygon_2.h @@ -149,13 +149,14 @@ class Polygon_2 { /// Creates an empty polygon. Polygon_2() : traits() {} + /// Creates an empty polygon. Polygon_2(const Traits & p_traits) : traits(p_traits) {} /// Copy constructor. Polygon_2(const Polygon_2& polygon) : d_container(polygon.d_container), traits(polygon.traits) {} - /// Introduces a polygon with vertices from the sequence + /// Creates a polygon with vertices from the sequence /// defined by the range \c [first,last). /// The value type of \c InputIterator must be \c Point_2. template