- removed "const" from istream().

This commit is contained in:
Sylvain Pion 1998-12-15 17:42:02 +00:00
parent 6a0e233bf3
commit bd450f0bbe
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ inline ostream& operator<<(ostream& os, const CGAL_Filtered_exact<CT,ET>& d)
{ return os << d.value; }
template <class CT, class ET>
inline istream &operator>>(istream &is, const CGAL_Filtered_exact<CT,ET>& d)
inline istream &operator>>(istream &is, CGAL_Filtered_exact<CT,ET>& d)
{ return is >> d.value; }