Non-type means several different things in different languages.
template < int > class CAT {}; int main() { int i=10; CAT<(const int)i> cat; return 0; //here I …
c++ templates parameters non-typeMaybe I'm tired, but I'm stuck with this simple partial specialization, which doesn't work because non-type template argument specializes a …
c++ templates partial-specialization non-type