Removed 'T' prefix from types and thus fixed compilation for GCC.

This commit is contained in:
Hauke Heibel 2013-07-29 12:08:50 +02:00
parent 5f11db695b
commit 9ef3645cc7

View File

@ -79,8 +79,8 @@ class KroneckerProductBase : public ReturnByValue<Derived>
* \tparam Lhs Type of the left-hand side, a matrix expression.
* \tparam Rhs Type of the rignt-hand side, a matrix expression.
*/
template<typename TLhs, typename TRhs>
class KroneckerProduct : public KroneckerProductBase<KroneckerProduct<TLhs,TRhs> >
template<typename Lhs, typename Rhs>
class KroneckerProduct : public KroneckerProductBase<KroneckerProduct<Lhs,Rhs> >
{
private:
typedef KroneckerProductBase<KroneckerProduct> Base;
@ -112,8 +112,8 @@ class KroneckerProduct : public KroneckerProductBase<KroneckerProduct<TLhs,TRhs>
* \tparam Lhs Type of the left-hand side, a matrix expression.
* \tparam Rhs Type of the rignt-hand side, a matrix expression.
*/
template<typename TLhs, typename TRhs>
class KroneckerProductSparse : public KroneckerProductBase<KroneckerProductSparse<TLhs,TRhs> >
template<typename Lhs, typename Rhs>
class KroneckerProductSparse : public KroneckerProductBase<KroneckerProductSparse<Lhs,Rhs> >
{
private:
typedef KroneckerProductBase<KroneckerProductSparse> Base;