From e2723cd844e0597f080ee194faf87715caed8f1c Mon Sep 17 00:00:00 2001 From: iburyl Date: Fri, 4 Oct 2024 15:13:04 -0700 Subject: [PATCH] fixed typo in conjugated implementation --- include/experimental/__p1673_bits/conjugated.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/experimental/__p1673_bits/conjugated.hpp b/include/experimental/__p1673_bits/conjugated.hpp index cd502e7..cd9145f 100644 --- a/include/experimental/__p1673_bits/conjugated.hpp +++ b/include/experimental/__p1673_bits/conjugated.hpp @@ -117,7 +117,7 @@ auto conjugated( using return_element_type = typename NestedAccessor::element_type; using return_accessor_type = NestedAccessor; return mdspan - (a.data_handle(), a.mapping(), a.nested_accessor()); + (a.data_handle(), a.mapping(), a.accessor().nested_accessor()); } } // end namespace linalg