This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug bootstrap/16193] [3.5 Regression] Bootstrap failure in libstdc++-v3


------- Additional Comments From ebotcazou at gcc dot gnu dot org  2004-06-27 15:13 -------
I was wrong, line #24 is

#ifndef _WCHAR_T
#define _WCHAR_T
#if defined(_LP64)
typedef int     wchar_t;
#else
typedef long    wchar_t;  <-- line #24
#endif
#endif  /* !_WCHAR_T */

so what happens is that the C++ front-end fails to recognize that the line is a
redeclaration of C++ built-in type.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16193


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]