From c457b0dff3ef79fc53ee8fb184afed05076926a4 Mon Sep 17 00:00:00 2001 From: Sebastien Loriot Date: Wed, 9 Apr 2025 10:31:14 +0200 Subject: [PATCH] add missing constructor --- TDS_3/include/CGAL/Triangulation_simplex_3.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TDS_3/include/CGAL/Triangulation_simplex_3.h b/TDS_3/include/CGAL/Triangulation_simplex_3.h index c6245e8bb9f..252869bf523 100644 --- a/TDS_3/include/CGAL/Triangulation_simplex_3.h +++ b/TDS_3/include/CGAL/Triangulation_simplex_3.h @@ -294,6 +294,10 @@ struct Output_rep, Tag > Simplex simplex; Tag tag; + Output_rep(Simplex s) + : simplex(s) + {} + std::ostream& operator()(std::ostream& os) const { auto display_vert = [&](auto v) { return CGAL::IO::oformat(v, tag);