This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Template linker errors with gcc 4.6.3


Hi
 
> Are your function templates defined in the headers that EVD.cpp includes?

Yes, EVD.cpp includes:

#include "Matrix.h"

and Matrix.h contains:

template<class T> class Matrix : public MatrixBase {
public:
    <snip>
    static Matrix<T> eye( unsigned a_size, T a_scalingFactor=1.0 ) DONT_INLINE;
    <snip>
}

David


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]