How to overwrite a templated function from non-templated parent class

前端 未结 0 1612
[愿得一人]
[愿得一人] 2021-01-29 03:34

Supposed I have a base class with a templated member function:

class Base {
 public:
  template 
  void Loop(T* input) {
    InnerLoop(input);
          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题