
4 Jul
2004
4 Jul
'04
9:30 p.m.
On Jun 30, 2004, at 12:05 PM, Pavol Droba wrote:
Hi,
Regression tests show that codewarrior 8.0 have some problems with string algo lib.
Report is here: http://tinyurl.com/35asy
It seems, that compiler cannot find std::locale class. Can somebody with an access to this compiler help here.
If <locale> is not included, std::locale will not be found. If you are linking to the std::lib as a shared lib, std::locale is disabled. You can detect that std::locale is disabled with: #ifdef _MSL_NO_LOCALE -Howard