From 99f779e79da72df6b6a79b51fb5375b940977b43 Mon Sep 17 00:00:00 2001 From: Mariette Yvinec Date: Fri, 2 Jul 1999 09:02:51 +0000 Subject: [PATCH] added std:: to cerr and endl --- Packages/iostream/changes.txt | 2 ++ Packages/iostream/include/CGAL/IO/io.h | 4 ++-- Packages/iostream/version | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Packages/iostream/changes.txt b/Packages/iostream/changes.txt index 3b366da33ab..a861f12b9ff 100644 --- a/Packages/iostream/changes.txt +++ b/Packages/iostream/changes.txt @@ -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:: diff --git a/Packages/iostream/include/CGAL/IO/io.h b/Packages/iostream/include/CGAL/IO/io.h index 0ae3e456794..6b950def47f 100644 --- a/Packages/iostream/include/CGAL/IO/io.h +++ b/Packages/iostream/include/CGAL/IO/io.h @@ -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); diff --git a/Packages/iostream/version b/Packages/iostream/version index f294a8c1c95..358c1a04cab 100644 --- a/Packages/iostream/version +++ b/Packages/iostream/version @@ -1 +1 @@ -2.1 (27 May 1999) +2.3 (29 Jun 1999)