Enrico Forestieri <[EMAIL PROTECTED]> writes:

> I don't understand either points. Why
>
>     char_type c = 0xb5;
>     os.put(c);
>
> would be ok, but
>
>     unsigned char c = 0xb5;
>     os.put(c);
>
> would not?

The first one is a wide char, so it is obviously unicode-encoded.

The second one is a 8bit char, presumably in some latinX code, but
which one?

JMarc

Reply via email to