This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: basic_istream error building SPEC eon on AIX
- From: David Edelsohn <dje at watson dot ibm dot com>
- To: Gabriel Dos Reis <gdr at integrable-solutions dot net>
- Cc: libstdc++ at gcc dot gnu dot org
- Date: Mon, 11 Aug 2003 18:55:55 -0400
- Subject: Re: basic_istream error building SPEC eon on AIX
>>>>> Gabriel Dos Reis writes:
Gaby> | std::basic_istream<char, std::char_traits<char> >::get(unsigned char&)'
Gaby> This does not exist.
252.eon includes the following code:
ggRasterSurfaceTexture::ggRasterSurfaceTexture( istream& in) {
...
unsigned char red, green, blue;
in.get(red); // eat a byte
...
in.get(red);
in.get(green);
in.get(blue);
Why did this work before? Why do the GCC SPEC testers runs by Andreas and
Diego compile this?
Is this a case of G++ being too pedantic in non-pedantic mode?
David