$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2006-02-10 11:25:01
> is_const and is_volatile fails to detect const and volatile arrays on
> VC7.1
Wierd, it's some kind of VC7.1-specific template deduction failure. It's
fixed now in cvs, and the tests have been updated as well.
The only thing I haven't been able to fix are cv-qualified unbounded arrays
in VC6 and VC7:
is_const<const int[]>::value => false on VC7 and earlier, and appears to be
unfixable for now.
John.