aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_symm.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-06-22 23:43:12 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-06-22 23:43:12 +0200
commit37dcdb1ed6b8055b57d5cc6734641f5bcb9c97aa (patch)
treed3787f99c15b5b91a90d7eb3bd86eda0a038abb6 /test/product_symm.cpp
parentb284bb8bba734253fc2186775d4d70f696ee65f1 (diff)
add missing typename
Diffstat (limited to 'test/product_symm.cpp')
-rw-r--r--test/product_symm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/product_symm.cpp b/test/product_symm.cpp
index 92a3f4594..4e020fe95 100644
--- a/test/product_symm.cpp
+++ b/test/product_symm.cpp
@@ -50,7 +50,7 @@ template<typename Scalar, int Size, int OtherSize> void symm(int size = Size, in
typedef Matrix<Scalar, OtherSize, Size> Rhs2;
enum { order = OtherSize==1 ? 0 : RowMajor };
typedef Matrix<Scalar, Size, OtherSize,order> Rhs3;
- typedef MatrixType::Index Index;
+ typedef typename MatrixType::Index Index;
Index rows = size;
Index cols = size;