diff --git a/source/ranges.tex b/source/ranges.tex index a6cebb51e4..10335bdfa0 100644 --- a/source/ranges.tex +++ b/source/ranges.tex @@ -16834,8 +16834,8 @@ \indexlibrarymember{size}{cache_latest_view}% \begin{itemdecl} -constexpr auto size() requires sized_range; -constexpr auto size() const requires sized_range; +constexpr auto size() requires @\libconcept{sized_range}@; +constexpr auto size() const requires @\libconcept{sized_range}@; \end{itemdecl} \begin{itemdescr} @@ -17017,9 +17017,9 @@ friend constexpr bool operator==(const @\exposid{iterator}@& x, const @\exposid{sentinel}@& y); friend constexpr range_difference_t operator-(const @\exposid{iterator}@& x, const @\exposid{sentinel}@& y) - requires sized_sentinel_for, iterator_t>; + requires @\libconcept{sized_sentinel_for}@, iterator_t>; friend constexpr range_difference_t operator-(const @\exposid{sentinel}@& x, const @\exposid{iterator}@& y) - requires sized_sentinel_for, iterator_t>; + requires @\libconcept{sized_sentinel_for}@, iterator_t>; }; } \end{codeblock} @@ -17062,7 +17062,7 @@ \indexlibrarymember{operator-}{cache_latest_view::\exposid{sentinel}}% \begin{itemdecl} friend constexpr range_difference_t operator-(const @\exposid{iterator}@& x, const @\exposid{sentinel}@& y) - requires sized_sentinel_for, iterator_t>; + requires @\libconcept{sized_sentinel_for}@, iterator_t>; \end{itemdecl} \begin{itemdescr} @@ -17075,7 +17075,7 @@ \indexlibrarymember{operator-}{cache_latest_view::\exposid{sentinel}}% \begin{itemdecl} friend constexpr range_difference_t operator-(const @\exposid{sentinel}@& x, const @\exposid{iterator}@& y) - requires sized_sentinel_for, iterator_t>; + requires @\libconcept{sized_sentinel_for}@, iterator_t>; \end{itemdecl} \begin{itemdescr}