Re: [ooc-compiler] Re: [Tinycc-devel] invalid escaped char
Brought to you by:
mva
|
From: Michael v. A. <Mic...@de...> - 2003-10-05 14:08:42
|
s duclos <syl...@ya...> writes: > Hi :) >=20 > I have no idea what this surrogate stuff is about :)) > [...] > Micheal, the code I'm referring to is in: > /usr/local/lib/oo2c/obj/Object.oh:14: >=20 > #define Object__surrogateLow "\=9000" > [...] This is actually a bug in the code generator. The character after the first "\" is junk due to overflow -- it tries to write a 16-bit character code using an 8-bit octal escape. This output is definitely not intended. I have no idea what gcc makes of it. -- mva |