Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -12793,8 +12793,9 @@
using offset_policy = conjugated_accessor<NestedAccessor::offset_policy>;

constexpr conjugated_accessor() = default;
constexpr conjugated_accessor(const NestedAccessor& acc);
template<class OtherNestedAccessor>
explicit(!is_convertible_v<OtherNestedAccessor, NestedAccessor>>)
explicit(!is_convertible_v<OtherNestedAccessor, NestedAccessor>)
constexpr conjugated_accessor(const conjugated_accessor<OtherNestedAccessor>& other);

constexpr reference access(data_handle_type p, size_t i) const;
Expand Down Expand Up @@ -12838,7 +12839,7 @@
\indexlibraryctor{conjugated_accessor}%
\begin{itemdecl}
template<class OtherNestedAccessor>
explicit(!is_convertible_v<OtherNestedAccessor, NestedAccessor>>)
explicit(!is_convertible_v<OtherNestedAccessor, NestedAccessor>)
constexpr conjugated_accessor(const conjugated_accessor<OtherNestedAccessor>& other);
\end{itemdecl}

Expand Down