Top "Non-type" questions

Non-type means several different things in different languages.

got "cannot appear in a constant-expression" when using template

template < int > class CAT {}; int main() { int i=10; CAT<(const int)i> cat; return 0; //here I …

c++ templates parameters non-type
(Partially) specializing a non-type template parameter of dependent type

Maybe 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