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;