Skip to content

Commit

Permalink
fixed typo in conjugated implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
iburyl committed Oct 4, 2024
1 parent a50de47 commit e2723cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/experimental/__p1673_bits/conjugated.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ auto conjugated(
using return_element_type = typename NestedAccessor::element_type;
using return_accessor_type = NestedAccessor;
return mdspan<return_element_type, Extents, Layout, return_accessor_type>
(a.data_handle(), a.mapping(), a.nested_accessor());
(a.data_handle(), a.mapping(), a.accessor().nested_accessor());
}

} // end namespace linalg
Expand Down

0 comments on commit e2723cd

Please sign in to comment.