mirror of https://github.com/CGAL/cgal
added std:: to cerr and endl
This commit is contained in:
parent
1128f8e61c
commit
99f779e79d
|
|
@ -13,6 +13,8 @@ src/io.C
|
||||||
|
|
||||||
|
|
||||||
CHANGES:
|
CHANGES:
|
||||||
|
Version 2.3 (29 June 1999)
|
||||||
|
added still missing std:: pointed out by Geert Jan
|
||||||
|
|
||||||
Version 2.2 (22 Juin 1999)
|
Version 2.2 (22 Juin 1999)
|
||||||
added a few missing std::
|
added a few missing std::
|
||||||
|
|
|
||||||
|
|
@ -168,8 +168,8 @@ std::istream &operator>>(std::istream &is, Color& col)
|
||||||
read(is, b);
|
read(is, b);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
cerr << "" << endl;
|
std::cerr << "" << std::endl;
|
||||||
cerr << "Stream must be in ascii or binary mode" << endl;
|
std::cerr << "Stream must be in ascii or binary mode" << std::endl;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
col = Color(r,g,b);
|
col = Color(r,g,b);
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
2.1 (27 May 1999)
|
2.3 (29 Jun 1999)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue