[sun] [program_options] unicode tests

I see failure like this: http://tinyurl.com/3xqtvg that reads: "../libs/program_options/test/unicode_test.cpp", line 114: Warning (Anachronism): Undefined character escape sequence "\u". .... Assertion failed: option.value.front() == value, file ../libs/program_options/test/unicode_test.cpp, line 100 It seems like sun compiler does not support unicode escape characters? Any magic way to make it work? - Volodya

On 11/1/07, Vladimir Prus <ghost@cs.msu.su> wrote:
It seems like sun compiler does not support unicode escape characters? Any magic way to make it work?
Sun C++ does not support unicode escape characters. The only magic way that I know is to implement this feature in the compiler :) -- Simon Atanasyan

Simon Atanasyan wrote:
On 11/1/07, Vladimir Prus <ghost@cs.msu.su> wrote:
It seems like sun compiler does not support unicode escape characters? Any magic way to make it work?
Sun C++ does not support unicode escape characters. The only magic way that I know is to implement this feature in the compiler :)
Are there other issues with unicode support? If not, I probably can prepare test data without using unicode escapes. - Volodya

On 11/1/07, Vladimir Prus <ghost@cs.msu.su> wrote:
Simon Atanasyan wrote:
On 11/1/07, Vladimir Prus <ghost@cs.msu.su> wrote:
It seems like sun compiler does not support unicode escape characters? Any magic way to make it work?
Sun C++ does not support unicode escape characters. The only magic way that I know is to implement this feature in the compiler :)
Are there other issues with unicode support? If not, I probably can prepare test data without using unicode escapes.
AFAIK "unicode escape" is the only issue. -- Simon Atanasyan
participants (2)
-
Simon Atanasyan
-
Vladimir Prus