$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Howard Hinnant (hinnant_at_[hidden])
Date: 2004-07-04 16:30:09
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