$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Roland Schwarz (roland.schwarz_at_[hidden])
Date: 2007-01-26 04:39:05
Johan Lindvall wrote:
> On 1/25/07, Joaquín Mª López Muñoz <joaquin_at_[hidden]> wrote:
>> The probably crucial issue about this failing test is that it's being
>> built
>> in *release* mode, so I wonder whether the existence of
>> unchecked_equal depends on some of the MSVC 8.0 "safe mode"
>> settings.
This also occurs in debug mode.
>
> In our code (built with MSVC 8) we use something like this:
>
> #if _SECURE_SCL
> stdext::unchecked_copy(...);
> #else
> std::copy(...);
> #endif
>
> Testing against _SECURE_SCL should solve the problem.
Looks promising.
Some additional hint: I am testing with the beta compiler. Could this be
the reason?
Roland