aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/nomalloc.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-01-26 23:35:30 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-01-26 23:35:30 +0100
commit412bb5a631a3ff32ff7256e9473f97e40023b2e7 (patch)
tree72c85bc332d33bc891c3416ec693ee48003bac40 /test/nomalloc.cpp
parent0f8d26c6a979f94ad64a3ffca81812e4bcb8bc8e (diff)
Remove redundant test.
Diffstat (limited to 'test/nomalloc.cpp')
-rw-r--r--test/nomalloc.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/nomalloc.cpp b/test/nomalloc.cpp
index 077ecae55..743ee6aa8 100644
--- a/test/nomalloc.cpp
+++ b/test/nomalloc.cpp
@@ -81,7 +81,6 @@ template<typename MatrixType> void nomalloc(const MatrixType& m)
m2.template selfadjointView<Lower>().rankUpdate(m1.row(0),-1);
// The following fancy matrix-matrix products are not safe yet regarding static allocation
-// m1.col(1) += m1.template triangularView<Upper>() * m2.col(0);
m2.template selfadjointView<Lower>().rankUpdate(m1);
m2 += m2.template triangularView<Upper>() * m1;
m2.template triangularView<Upper>() = m2 * m2;