Skip to content

Commit

Permalink
Merge pull request #294 from iburyl/fix-conjugated
Browse files Browse the repository at this point in the history
fixed typo in conjugated implementation
  • Loading branch information
mhoemmen authored Oct 4, 2024
2 parents 62658b4 + 72b09fa commit 1c85df1
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 @@ -135,7 +135,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 1c85df1

Please sign in to comment.