aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/matrixops.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/matrixops.cpp')
-rw-r--r--test/matrixops.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/matrixops.cpp b/test/matrixops.cpp
index 1a70dcf5d..8acf43277 100644
--- a/test/matrixops.cpp
+++ b/test/matrixops.cpp
@@ -44,10 +44,9 @@ template<typename MatrixType1,
a = b;
a = b + c;
a = s * (b - c);
- a.alias() = a + b;
+ a = eval(a + b);
a += b;
- a.alias() += b;
a -= b + b;
MatrixType1 d(rows1, cols1);