template class specialization with template class parameter

前端 未结 1 1576
感动是毒
感动是毒 2021-01-14 20:14

Say I have :

template < typename T >
class ClassA 
{
    void doTheStuff (T const * t);
};

template < typename T >
class ClassB
{
    // Some st         


        
相关标签:
1条回答
  • 2021-01-14 20:58

    Remove the extra template<> and it will work.

    0 讨论(0)
提交回复
热议问题