uBlas Lapack binds from Sandbox - pb with templ. specialisation
Toon & Kresimir,
I've downloaded the lapack and blas binds from the boost sandbox,
and I found out the hard way (again :^( ...) the 'features' of the
VC6 compiler, i.e. the lack of support for template specialisation.
The offending code is: (line nbr may differ due to versioning)
*) boost\numeric\bindings\traits\algorithm.hpp(45):
template < typename T >
struct is_equal
vs:
template < typename T >
struct is_equal< boost::numeric::ublas::matrix< T > >
--> template class has already been defined as a non-template class
*) libs\numeric\bindings\blas\test\blas.hpp(51):
template < typename T >
struct assign_multiplier
vs:
template < typename T >
struct assign_multiplier< std::complex< T > >
*) boost\numeric\bindings\traits\traits.hpp(46):
template
participants (1)
-
geert_ceuppens