Skip to content

Commit cb27155

Browse files
[readable.traits] Replace improper \placeholder with \exposid
1 parent ef2abfa commit cb27155

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
@@ -832,10 +832,10 @@
832832

833833
\indexlibraryglobal{indirectly_readable_traits}%
834834
\begin{codeblock}
835-
template<class> struct @\placeholder{cond-value-type}@ { }; // \expos
835+
template<class> struct @\exposid{cond-value-type}@ { }; // \expos
836836
template<class T>
837837
requires is_object_v<T>
838-
struct @\placeholder{cond-value-type}@<T> {
838+
struct @\exposid{cond-value-type}@<T> {
839839
using value_type = remove_cv_t<T>;
840840
};
841841

@@ -849,7 +849,7 @@
849849

850850
template<class T>
851851
struct indirectly_readable_traits<T*>
852-
: @\placeholder{cond-value-type}@<T> { };
852+
: @\exposid{cond-value-type}@<T> { };
853853

854854
template<class I>
855855
requires is_array_v<I>
@@ -863,11 +863,11 @@
863863

864864
template<@\exposconcept{has-member-value-type}@ T>
865865
struct indirectly_readable_traits<T>
866-
: @\placeholder{cond-value-type}@<typename T::value_type> { };
866+
: @\exposid{cond-value-type}@<typename T::value_type> { };
867867

868868
template<@\exposconcept{has-member-element-type}@ T>
869869
struct indirectly_readable_traits<T>
870-
: @\placeholder{cond-value-type}@<typename T::element_type> { };
870+
: @\exposid{cond-value-type}@<typename T::element_type> { };
871871

872872
template<@\exposconcept{has-member-value-type}@ T>
873873
requires @\exposconcept{has-member-element-type}@<T>
@@ -877,7 +877,7 @@
877877
requires @\exposconcept{has-member-element-type}@<T> &&
878878
@\libconcept{same_as}@<remove_cv_t<typename T::element_type>, remove_cv_t<typename T::value_type>>
879879
struct indirectly_readable_traits<T>
880-
: @\placeholder{cond-value-type}@<typename T::value_type> { };
880+
: @\exposid{cond-value-type}@<typename T::value_type> { };
881881

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

0 commit comments

Comments
 (0)