j
k
j a
j l
David Abrahams wrote:
You could considerably simplify range_size by removing half of the specializations and adding this one: template <class T> struct range_size<T const> : range_size<T> {};
You could considerably simplify range_size by removing half of the specializations and adding this one:
template <class T> struct range_size<T const> : range_size<T> {};
That's a good suggestion. Thanks! -Thorsten
Back to the thread
Back to the list