$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Howard Hinnant (hinnant_at_[hidden])
Date: 2000-06-21 08:25:20
John Maddock wrote on 6/21/2000 7:12 AM
>template <typename T, std::size_t N>
>struct call_traits<const T [N]>
>{
>private:
> typedef const T array_type[N];
>public:
> // degrades array to pointer:
> typedef const T* value_type;
> typedef array_type& reference;
> typedef const array_type& const_reference;
> typedef const T* param_type;
>};
Looks good to me.
-Howard