mirror of https://github.com/CGAL/cgal
- Added std:: for the iostrem functions.
This commit is contained in:
parent
effc18ebf0
commit
f7eb5d551c
|
|
@ -483,13 +483,13 @@ max (const Interval_nt_advanced & d, const Interval_nt_advanced & e)
|
|||
}
|
||||
|
||||
inline
|
||||
ostream &
|
||||
operator<< (ostream & os, const Interval_nt_advanced & d)
|
||||
std::ostream &
|
||||
operator<< (std::ostream & os, const Interval_nt_advanced & d)
|
||||
{ return os << "[" << d.lower_bound() << ";" << d.upper_bound() << "]"; }
|
||||
|
||||
inline
|
||||
istream &
|
||||
operator>> (istream & is, Interval_nt_advanced & ia)
|
||||
std::istream &
|
||||
operator>> (std::istream & is, Interval_nt_advanced & ia)
|
||||
{
|
||||
double d;
|
||||
is >> d;
|
||||
|
|
|
|||
Loading…
Reference in New Issue