aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/reshape.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/reshape.cpp')
-rw-r--r--test/reshape.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/reshape.cpp b/test/reshape.cpp
index 77aec1f95..da5c01183 100644
--- a/test/reshape.cpp
+++ b/test/reshape.cpp
@@ -149,7 +149,6 @@ void reshape4x4(MatType m)
MatrixXi m28r2 = m.transpose().template reshaped<ColMajor>(8,2).transpose();
VERIFY_IS_EQUAL( m28r1, m28r2);
- using placeholders::all;
VERIFY(is_same_eq(m.reshaped(v16,fix<1>), m(all)));
VERIFY_IS_EQUAL(m.reshaped(16,1), m(all));
VERIFY_IS_EQUAL(m.reshaped(1,16), m(all).transpose());