- workaround Borland bug in test program.

This commit is contained in:
Sylvain Pion 2003-02-12 19:23:25 +00:00
parent c8cebc341a
commit 2fec4be154
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,9 @@
Stream_support Package: Release changes:
---------------------------------------------------------------------
2.19 (12 Feb 2003)
- workaround Borland bug in test program.
2.18 (29 Apr 2002)
- split of user and reference manuals

View File

@ -30,10 +30,11 @@
using namespace CGAL;
typedef CGAL::Cartesian<double> Rep;
typedef Rep::Point_2 Point;
int main()
{
typedef Cartesian<double> Rep;
typedef Rep::Point_2 Point;
typedef Ostream_iterator<Point,std::ostrstream> IteratorO;
typedef Istream_iterator<Point,std::istrstream> IteratorI;
{