$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: David B. Held (dheld_at_[hidden])
Date: 2002-10-03 15:30:17
"David B. Held" <dheld_at_[hidden]> wrote in message
news:ani8iu$5ei$1_at_main.gmane.org...
> For compilers lacking PTS, what does add_reference do? Is it undefined?
> Is it defined, but has undefined behaviour? What I would like it to do is
> to simply tack on an &, regardless of the underlying type.
Ok, I discovered
BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION()
However, it looks like it only works with concrete types. Can I use it
inside a template class on a dependent type? I.e.:
template <typename T>
class foo
{
BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(T)
typedef add_reference<T>::type t_ref;
};
Dave