mirror of https://github.com/CGAL/cgal
fixed a bug in output << operator
(clash between the varaiable name and a short name Ct for Cartesian)
This commit is contained in:
parent
6abe8e169a
commit
2fc7c165a9
|
|
@ -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<Gt,Tds> &Ct)
|
||||
operator<<(std::ostream& os, const Constrained_triangulation_2<Gt,Tds> &ct)
|
||||
{
|
||||
Ct.file_output(os);
|
||||
ct.file_output(os);
|
||||
return os ;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue