we have a class template that has a template argument and want to specialize it..
anyone has any examples for this? (haven't any particular case in mind just want to see how this is done to get it working)
e.g:
anyone has any examples for this? (haven't any particular case in mind just want to see how this is done to get it working)
e.g:
Code:
template<bool> class BoolClass{}; template< template<bool> class C> struct dummy; template<> struct dummy< ... for BoolClass<true> >{};
Comment