$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Chris Little (cslittle_at_[hidden])
Date: 2000-10-16 14:09:21
I'm working through the test applications in 1.18.1 using CodeWarrior 6 with
all of the warnings on to get a sense of what is possible using Boost and I
received a warning when compiling type_traits_test.cpp.
CW6 reports the inconsistent use of class and struct in the definition of
template <> struct is_convertible<void,void>.
The original declaration is template <class From, class To> class
is_convertible.
It seems like original declaration should be changed to struct with
protected: inside the first brace.
Chris Little