This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: New test 22_locale/collate_wchar_t_members.cc fails on cygwin
- To: "Billinghurst, David (CRTS)" <David dot Billinghurst at riotinto dot com>
- Subject: Re: New test 22_locale/collate_wchar_t_members.cc fails on cygwin
- From: Benjamin Kosnik <bkoz at redhat dot com>
- Date: Wed, 22 Aug 2001 21:35:19 -0700 (PDT)
- cc: "'libstdc++ at gcc dot gnu dot org'" <libstdc++ at gcc dot gnu dot org>
Ack, sorry about this.
> problem seems to be:
> `wstring' undeclared (first use this function)
>
> >From libstdc++-v3/include/bits/stringfwd.h it seems that defining
> _GLIBCPP_USE_WCHAR_T may fix this. Is this a "good thing"? If so, how do I
> do it?
#ifdef _GLIBCPP_USE_WCHAR_T
test
#endif
like libstdc++-v3/testsuite/22_locale/codecvt_wchar_t_char.cc
I'll do it tonight.
-benjamin