From: mfdylan (dylan_at_[hidden])
Date: 2002-02-21 18:43:30


According to the compiler status table, MSVC 6.0 can compile
call_traits. I certainly can't, because it contains the following:

template <typename T>
struct call_traits
{
...
};

template <typename T>
struct call_traits<T&>
{
...
};

This sort of partial specialisation is not supported in MSVC 6.0.
There are quite a number of libraries (eg rational) that use
call_traits so how are people getting these to compile currently?

Thanks

Dylan