Re: missing support for std::wstring breaks stuff on -CURRENT

2002-12-30 Thread David O'Brien
On Sun, Dec 29, 2002 at 08:24:23PM +0100, Simon 'corecode' Schubert wrote: > would please somebody look into this case and explain why wchar_t > support wasn't enabled? Because the GCC developers disabled it for GCC 3.2.1 > tim robins already provided a patch that will make stuff working. Pleas

missing support for std::wstring breaks stuff on -CURRENT

2002-12-29 Thread Simon 'corecode' Schubert
hello people, as several other people already noted -current doesn't support std::wstring. this is a real pitty as more and more programs tend to use this. you can test with this simple case: % cat wchar.cc #include int main(int, char *[]) { std::wstring test(L"test"); } % c++ wchar.c