C2020: Template parameter not used in function parameter list

[ERROR]

Description

A template parameter didn't occur in the parameter list of the template function.

Example
  template<class S> void f(int i) {  // error

  
    // ...

  
  };

  
Tips

The parameter list of the template function must contain the template parameters.