11 Feb
2009
11 Feb
'09
8:49 a.m.
This particular problem is a result of incorrect printing operation of wchar_t strings into ostream. You can probably implement one yourself, which does the better job.
The only way I get it called is when I declare it in boost::test_tools namespace: namespace boost { namespace test_tools { std::ostream& operator<<(std::ostream& stream, wchar_t const * s) { return (stream<< CW2A(s)); } } }