How can I use function templates so that the following method works for any passed vector?
class MyClass
{
public:
static void method(Vector &aVector);
};
void MyClass::method(Vector &aVector)
{
...
}
I tried the following, but I get this error message:
collect2: ld returned 1 exit status
class MyClass
{
public:
template<class T>
static void method(Vector &aVector);
};
template<class T>
void MyClass::method(Vector &aVector) {
// ...
}