From 2fc7c165a95e7145bcd63d67fbecf8450b2b4151 Mon Sep 17 00:00:00 2001 From: Mariette Yvinec Date: Wed, 13 Oct 1999 09:21:06 +0000 Subject: [PATCH] fixed a bug in output << operator (clash between the varaiable name and a short name Ct for Cartesian) --- .../include/CGAL/Constrained_triangulation_2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packages/Triangulation_2/include/CGAL/Constrained_triangulation_2.h b/Packages/Triangulation_2/include/CGAL/Constrained_triangulation_2.h index 8d8754320b3..0cc31433dfa 100644 --- a/Packages/Triangulation_2/include/CGAL/Constrained_triangulation_2.h +++ b/Packages/Triangulation_2/include/CGAL/Constrained_triangulation_2.h @@ -703,9 +703,9 @@ file_output(std::ostream& os) const template < class Gt, class Tds > std::ostream & -operator<<(std::ostream& os, const Constrained_triangulation_2 &Ct) +operator<<(std::ostream& os, const Constrained_triangulation_2 &ct) { - Ct.file_output(os); + ct.file_output(os); return os ; }