$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Johan Råde (rade_at_[hidden])
Date: 2008-02-25 15:58:56
John Maddock wrote:
> Intel-10.1 has similar failures (except in SSE2 mode!), so this may be iostream's related.
I have reproduced the failures on Intel 10.1.
The only thing that was wrong was the tests.
After I replaced
-std::numeric_limits<ValType>::quiet_NaN()
-std::numeric_limits<ValType>::signaling_NaN()
by
changesign(std::numeric_limits<ValType>::signaling_NaN())
changesign(std::numeric_limits<ValType>::quiet_NaN())
everywhere in the tests, then all tests passed.
Could you check if that does the trick on VC8 as well?
--Johan