A
Angel Tsankov
I'm thinking about using a function tamplate to verify that an
identifier is of an array type. May the following template be
used for this purpose:
template< typename T, int N >
void check_array( T(&)[N] )
{
}
And what about using size_t instead of int?
identifier is of an array type. May the following template be
used for this purpose:
template< typename T, int N >
void check_array( T(&)[N] )
{
}
And what about using size_t instead of int?