Re: Fixing gcc 3.3 compile failures -- fix for math/freefem

2003-07-20 Thread Simon Barner
Hi, > > -ifstream fin( path ); > > +std::ifstream fin( path ); > A much smaller patch could be produced with > > using namespace std; > > as appropriate. > > Have you checked with the upstream author to see which approach is > likely to be rolled into the distribution? Actually, upg

Re: Fixing gcc 3.3 compile failures -- fix for math/freefem

2003-07-19 Thread Jacques A. Vidrine
On Sat, Jul 19, 2003 at 05:05:39AM +0200, Simon Barner wrote: > --- freefem/fem/femDisk.cpp.orig Sat Jul 19 04:09:32 2003 > +++ freefem/fem/femDisk.cpp Sat Jul 19 04:13:43 2003 > @@ -95,7 +95,7 @@ > char *result = 0; > int dummy; > > -ifstream fin( path ); > +std::ifstrea

Re: Fixing gcc 3.3 compile failures -- fix for math/freefem

2003-07-18 Thread Simon Barner
--- freefem/fem/femDisk.cpp.origSat Jul 19 04:09:32 2003 +++ freefem/fem/femDisk.cpp Sat Jul 19 04:13:43 2003 @@ -95,7 +95,7 @@ char *result = 0; int dummy; -ifstream fin( path ); +std::ifstream fin( path ); if ( fin.fail() ) { @@ -198,7 +198,7 @@