From f54cc6d0bb5a651a4ce85e49df78f66fbc09b5d7 Mon Sep 17 00:00:00 2001 From: conrad Date: Tue, 11 Jun 2024 12:17:11 +1000 Subject: [PATCH] clarifications --- include/armadillo_bits/unwrap.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/armadillo_bits/unwrap.hpp b/include/armadillo_bits/unwrap.hpp index 0fdd6ddc..5f2009b6 100644 --- a/include/armadillo_bits/unwrap.hpp +++ b/include/armadillo_bits/unwrap.hpp @@ -1361,7 +1361,7 @@ struct partial_unwrap< subview > static constexpr bool do_trans = false; static constexpr bool do_times = false; - static constexpr bool is_fast = false; // can't guarantee that memory is reused + static constexpr bool is_fast = false; // can't determine at compile time that memory is reused const subview& sv; const Mat M; @@ -1622,7 +1622,7 @@ struct partial_unwrap< Op< subview, op_htrans> > static constexpr bool do_trans = true; static constexpr bool do_times = false; - static constexpr bool is_fast = false; // can't guarantee that memory is reused + static constexpr bool is_fast = false; // can't determine at compile time that memory is reused const subview& sv; const Mat M; @@ -1894,7 +1894,7 @@ struct partial_unwrap< Op< subview, op_htrans2> > static constexpr bool do_trans = true; static constexpr bool do_times = true; - static constexpr bool is_fast = false; // can't guarantee that memory is reused + static constexpr bool is_fast = false; // can't determine at compile time that memory is reused const subview& sv; const eT val;