From 7ca6df6c030d6d72180ae2f2f5eb61cdc8e80ce3 Mon Sep 17 00:00:00 2001 From: conrad Date: Sat, 18 Sep 2021 20:42:42 +1000 Subject: [PATCH] skip alias checks --- include/armadillo_bits/op_strans_meat.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/armadillo_bits/op_strans_meat.hpp b/include/armadillo_bits/op_strans_meat.hpp index 8dc02694..a5d97cc6 100644 --- a/include/armadillo_bits/op_strans_meat.hpp +++ b/include/armadillo_bits/op_strans_meat.hpp @@ -402,13 +402,13 @@ op_strans::apply_direct(Mat& out, const T1& X) { Mat tmp; - op_strans::apply_mat(tmp, U.M); + op_strans::apply_mat_noalias(tmp, U.M); out.steal_mem(tmp); } else { - op_strans::apply_mat(out, U.M); + op_strans::apply_mat_noalias(out, U.M); } } else