aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-11-30 19:06:07 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-11-30 19:06:07 +0100
commite6c560aedfff176cbc6df40eedd4c5cf343b0fa6 (patch)
treea7723fcaa8d2a1c39e111d2f59769c390f5c56ea /Eigen
parent1c2e476fa745d7323d77959d5fb88fd3587be187 (diff)
Removed wrong typename.
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/util/XprHelper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/XprHelper.h b/Eigen/src/Core/util/XprHelper.h
index 7f58797d7..d1250c009 100644
--- a/Eigen/src/Core/util/XprHelper.h
+++ b/Eigen/src/Core/util/XprHelper.h
@@ -207,7 +207,7 @@ struct ei_ref_selector
template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
struct ei_ref_selector< Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
{
- typedef typename Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> MatrixType;
+ typedef Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> MatrixType;
typedef MatrixType const& type;
};