This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] Revision 3: utf-16 and utf-32 support in C and C++
On Fri, Apr 18, 2008 at 03:14:42PM +0200, Holger Hopp wrote:
> I have detected that some parts are incomplete.
> For example,
>
> char16_t *c16p = u"Hello World";
>
> works fine, but
>
> char16_t c16[] = u"Hello World";
>
> produces an error message. Ditto for char32_t.
Works fine here (the first one with a warning, as it should be
const char16_t *) with what has been committed.
Jakub