j
k
j a
j l
David Abrahams wrote:
Array types in function parameter lists decay to pointers, so of course that's ambiguous. Maybe you mean template <class T, std::size_t N> size_t hash_value( T (&x)[N] ); ??
Array types in function parameter lists decay to pointers, so of course that's ambiguous. Maybe you mean
template <class T, std::size_t N> size_t hash_value( T (&x)[N] );
??
Yes.
Back to the thread
Back to the list