On Fri, Mar 6, 2009 at 2:05 PM, Piotr Wyderski <piotr.wyder...@gmail.com> wrote: > Richard Guenther wrote: > >> Where is windows.h included? > > I am not 100% sure yet -- the build process is in progress right > now, so I don't want to interfere. I suspect it is the one included > by gthr-win32.h. It contains the following lines: > > #include <windows.h> > /* Now undef the windows BOOL. */ > #undef BOOL > > so I think that adding > > #undef MIN > #undef MAX
more likely #undef min #undef max > will solve the situation, but, as I said, I am not completely sure > it's the troublemaker. Firstly I would like to check whether those > are the only two bugs to be fixed. Additionally, I have no write > access to trunk (or anything else in the tree), so somebody else > should include the fix. > >> During what part of compilation is CONST_CAST2 a problem? > > Stage 3 in libstdc++ Ok, then it should probably be #if !defined(__cplusplus) #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((__extension__(union {FROMTYPE _q; TOTYPE _nq;})(X))._nq) #else #define CONST_CAST2(TOTYPE,FROMTYPE,X) const_cast<TOTYPE>(x) #endif Richard. > - Show quoted text - > >> >> Richard. >> >>> Best regards, >>> Piotr Wyderski >>> >> >