Re: [eigen] Re: XLC Port: Part II - External definition of a template member function of a template class causing the problems? |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
Ah, wait, i've had this kind of problem when trying icc (i think) : there are templates declared (in forward as
template<typename T>
but later on defined with
template<class T>
It seems that most compilers do not care. I think icc issued warnings.. maybe yours is just not happy with this. This can easily be fixed without disturbing other compilers i think.
Thomas
--
Thomas Capricelli <orzel@xxxxxxxxxxxxxxx>
http://www.freehackers.org/thomas
In data mercoledì 27 gennaio 2010 14:50:38, Thomas Capricelli ha scritto:
> > template<typename T> struct ei_traits;