Skip to content

Commit 196c47c

Browse files
[readable.traits] Replace improper \placeholder with \exposid
1 parent 50b86c5 commit 196c47c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/iterators.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -820,10 +820,10 @@
820820

821821
\indexlibraryglobal{indirectly_readable_traits}%
822822
\begin{codeblock}
823-
template<class> struct @\placeholder{cond-value-type}@ { }; // \expos
823+
template<class> struct @\exposid{cond-value-type}@ { }; // \expos
824824
template<class T>
825825
requires is_object_v<T>
826-
struct @\placeholder{cond-value-type}@<T> {
826+
struct @\exposid{cond-value-type}@<T> {
827827
using value_type = remove_cv_t<T>;
828828
};
829829

@@ -837,7 +837,7 @@
837837

838838
template<class T>
839839
struct indirectly_readable_traits<T*>
840-
: @\placeholder{cond-value-type}@<T> { };
840+
: @\exposid{cond-value-type}@<T> { };
841841

842842
template<class I>
843843
requires is_array_v<I>
@@ -851,11 +851,11 @@
851851

852852
template<@\exposconcept{has-member-value-type}@ T>
853853
struct indirectly_readable_traits<T>
854-
: @\placeholder{cond-value-type}@<typename T::value_type> { };
854+
: @\exposid{cond-value-type}@<typename T::value_type> { };
855855

856856
template<@\exposconcept{has-member-element-type}@ T>
857857
struct indirectly_readable_traits<T>
858-
: @\placeholder{cond-value-type}@<typename T::element_type> { };
858+
: @\exposid{cond-value-type}@<typename T::element_type> { };
859859

860860
template<@\exposconcept{has-member-value-type}@ T>
861861
requires @\exposconcept{has-member-element-type}@<T>
@@ -865,7 +865,7 @@
865865
requires @\exposconcept{has-member-element-type}@<T> &&
866866
@\libconcept{same_as}@<remove_cv_t<typename T::element_type>, remove_cv_t<typename T::value_type>>
867867
struct indirectly_readable_traits<T>
868-
: @\placeholder{cond-value-type}@<typename T::value_type> { };
868+
: @\exposid{cond-value-type}@<typename T::value_type> { };
869869

870870
template<class T> using iter_value_t = @\seebelow@;
871871
\end{codeblock}

0 commit comments

Comments
 (0)