
26 Jan
2007
26 Jan
'07
9:39 a.m.
Johan Lindvall wrote:
On 1/25/07, Joaquín Mª López Muñoz <joaquin@tid.es> 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