added std:: to cerr and endl

This commit is contained in:
Mariette Yvinec 1999-07-02 09:02:51 +00:00
parent 1128f8e61c
commit 99f779e79d
3 changed files with 5 additions and 3 deletions

View File

@ -13,6 +13,8 @@ src/io.C
CHANGES:
Version 2.3 (29 June 1999)
added still missing std:: pointed out by Geert Jan
Version 2.2 (22 Juin 1999)
added a few missing std::

View File

@ -168,8 +168,8 @@ std::istream &operator>>(std::istream &is, Color& col)
read(is, b);
break;
default:
cerr << "" << endl;
cerr << "Stream must be in ascii or binary mode" << endl;
std::cerr << "" << std::endl;
std::cerr << "Stream must be in ascii or binary mode" << std::endl;
break;
}
col = Color(r,g,b);

View File

@ -1 +1 @@
2.1 (27 May 1999)
2.3 (29 Jun 1999)