aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/stdlist_overload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/stdlist_overload.cpp')
-rw-r--r--test/stdlist_overload.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/stdlist_overload.cpp b/test/stdlist_overload.cpp
index bb910bd43..386124ad4 100644
--- a/test/stdlist_overload.cpp
+++ b/test/stdlist_overload.cpp
@@ -44,8 +44,8 @@ void set(Container & c, Position position, const Value & value)
template<typename MatrixType>
void check_stdlist_matrix(const MatrixType& m)
{
- typename MatrixType::Index rows = m.rows();
- typename MatrixType::Index cols = m.cols();
+ Index rows = m.rows();
+ Index cols = m.cols();
MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
std::list<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
typename std::list<MatrixType>::iterator itv = get(v, 5);