|
From: Jeff W. <jwi...@mf...> - 2003-08-12 15:13:43
|
> Message: 10
> Date: Tue, 12 Aug 2003 12:26:49 +0100
> From: Danny Smith <dan...@cl...>
> Subject: Re: [Mingw-users] [Announcement]; GCC 3.3.1
> To: min...@li...
> Reply-To: min...@li...
>
>
> ----- Original Message -----
> From: "Jeff Williams"
>
> >
> > Also I had a few header file issues with cstdio but nothing I couldn't
> fix.
> >
> Please report these so they can be fixed for everyone.
> Danny
>
> > Jeff
> >
C:\MinGW\include\c++\3.3.1\cstdio
Beginning at line 166:
#if !_GLIBCPP_USE_C99_DYNAMIC
using ::snprintf;
//using ::vfscanf; Commented out by Jeff 8-11-03
//using ::vscanf; Commented out by Jeff 8-11-03
using ::vsnprintf;
//using ::vsscanf; Commented out by Jeff 8-11-03
#endif
}
namespace std
{
using __gnu_cxx::snprintf;
//using __gnu_cxx::vfscanf; Commented out by Jeff 8-11-03
//using __gnu_cxx::vscanf; Commented out by Jeff 8-11-03
using __gnu_cxx::vsnprintf;
//using __gnu_cxx::vsscanf; Commented out by Jeff 8-11-03
}
#endif
C:\MinGW\include\c++\3.3.1\cstdlib
Commented out line 177 and 196
I don't if these changes are needed by all or because I am using stlport or because I installed the first release candidate of GCC 3.2.3 (the one with a bad header) and I corrected that problem manual too.
Jeff
|