Suppose I have this template:
template<class T, int a, int b>
class Foo
I have a partial specialized version of the above template for char:
template<int a, int b>
class Foo<char, a, b>
How can I further specialize the above template for, say, a = 1?