From 9ef3645cc748151565131fb946c400471fea8969 Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Mon, 29 Jul 2013 12:08:50 +0200 Subject: [PATCH] Removed 'T' prefix from types and thus fixed compilation for GCC. --- .../Eigen/src/KroneckerProduct/KroneckerTensorProduct.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h b/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h index 0dccdb2bc..a4516056d 100644 --- a/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +++ b/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h @@ -79,8 +79,8 @@ class KroneckerProductBase : public ReturnByValue * \tparam Lhs Type of the left-hand side, a matrix expression. * \tparam Rhs Type of the rignt-hand side, a matrix expression. */ -template -class KroneckerProduct : public KroneckerProductBase > +template +class KroneckerProduct : public KroneckerProductBase > { private: typedef KroneckerProductBase Base; @@ -112,8 +112,8 @@ class KroneckerProduct : public KroneckerProductBase * \tparam Lhs Type of the left-hand side, a matrix expression. * \tparam Rhs Type of the rignt-hand side, a matrix expression. */ -template -class KroneckerProductSparse : public KroneckerProductBase > +template +class KroneckerProductSparse : public KroneckerProductBase > { private: typedef KroneckerProductBase Base;