Ok, I'm having issues with the linker on my current project (This is a continuation of another question, ish)
Basically, the linker gives an undefined reference in dynamiclib.so for:
std::basic_ostream<char, std::char_traits<char> >& SparseImplementationLib::operator<< <double, double, SparseImplementationLib::DefaultPtr<double, double> >(std::basic_ostream<char, std::char_traits<char> >&, SparseImplementationLib::AbstractSparseNode<double, double, SparseImplementationLib::DefaultPtr<double, double> > const&)
And I can only find:
std::ostream& SparseImplementationLib::operator<< <double, double, SparseImplementationLib::DefaultPtr<double, double> >(std::ostream&, SparseImplementationLib::AbstractSparseNode<double, double, SparseImplementationLib::DefaultPtr<double, double> > const&)
within the file.
Thing is, they're the same methods, really (basic_ostream and ostream are interchangable?)
If I add the first method in manually to the namespace it moans about it being already defined at compile time.
Does anyone know what on earth might be going on here?
Cheers, Ed
NB this is with MPICXX and CCMAKE
