From: Philippe Vaucher (philippe.vaucher_at_[hidden])
Date: 2006-06-28 09:31:07


Hum, actually it might be better to do it like :

template <class Arr>
struct count_of
{
   BOOST_STATIC_ASSERT(boost::is_array<Arr>::value);
   enum { value = sizeof(Arr)/sizeof(Arr[0]) };
};

Sorry if I missed a point, joined late in the discussion :)
Philippe