|
>Is it possible to have a nontype default template parameter that is not an int or a pointer?
Your choices for non-type template parameters are limited to an integral or enum type, a pointer to object or function, a reference to object or function, and a pointer to a member. All of them allow default arguments.
|