
10 Apr
2005
10 Apr
'05
1:14 p.m.
"Daniel James" <daniel@calamity.org.uk> wrote in message news:d3b7tr$d43$1@sea.gmane.org... | I've just checked in an attempt at supporting built-in arrays in | boost::hash. It's not great and I might remove it before Friday. My main | problem was that overloading hash_value for both T* and T[Size] causes | ambiguity why? Does template< class T > void hash( size_t&, const T* ); template< class T, unsigned N > void hash( size_t&, const T (&array)[N] ); not work? -Thorsten