Skip to content

Commit f85946b

Browse files
Dawn Perchikzygoloid
authored andcommitted
[utilities] Use "\expos" instead of "exposition only" in declarations.
1 parent 02f6d23 commit f85946b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/utilities.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1705,7 +1705,7 @@
17051705
Given the exposition-only function:
17061706
\begin{codeblock}
17071707
template<class T, class Tuple, size_t... I>
1708-
constexpr T @\placeholdernc{make-from-tuple-impl}@(Tuple&& t, index_sequence<I...>) { // exposition only
1708+
constexpr T @\placeholdernc{make-from-tuple-impl}@(Tuple&& t, index_sequence<I...>) { // \expos
17091709
return T(get<I>(std::forward<Tuple>(t))...);
17101710
}
17111711
\end{codeblock}
@@ -7924,7 +7924,7 @@
79247924

79257925
\begin{itemdecl}
79267926
template<class I>
7927-
concept @\placeholdernc{no-throw-input-iterator}@ = // exposition only
7927+
concept @\placeholdernc{no-throw-input-iterator}@ = // \expos
79287928
input_iterator<I> &&
79297929
is_lvalue_reference_v<iter_reference_t<I>> &&
79307930
same_as<remove_cvref_t<iter_reference_t<I>>, iter_value_t<I>>;
@@ -7947,7 +7947,7 @@
79477947

79487948
\begin{itemdecl}
79497949
template<class S, class I>
7950-
concept @\placeholdernc{no-throw-sentinel}@ = sentinel_for<S, I>; // exposition only
7950+
concept @\placeholdernc{no-throw-sentinel}@ = sentinel_for<S, I>; // \expos
79517951
\end{itemdecl}
79527952

79537953
\begin{itemdescr}
@@ -7966,7 +7966,7 @@
79667966

79677967
\begin{itemdecl}
79687968
template<class R>
7969-
concept @\placeholdernc{no-throw-input-range}@ = // exposition only
7969+
concept @\placeholdernc{no-throw-input-range}@ = // \expos
79707970
range<R> &&
79717971
@\placeholder{no-throw-input-iterator}@<iterator_t<R>> &&
79727972
@\placeholdernc{no-throw-sentinel}@<sentinel_t<R>, iterator_t<R>>;
@@ -7981,7 +7981,7 @@
79817981

79827982
\begin{itemdecl}
79837983
template<class I>
7984-
concept @\placeholdernc{no-throw-forward-iterator}@ = // exposition only
7984+
concept @\placeholdernc{no-throw-forward-iterator}@ = // \expos
79857985
@\placeholder{no-throw-input-iterator}@<I> &&
79867986
forward_iterator<I> &&
79877987
@\placeholdernc{no-throw-sentinel}@<I, I>;
@@ -7997,7 +7997,7 @@
79977997

79987998
\begin{itemdecl}
79997999
template<class R>
8000-
concept @\placeholdernc{no-throw-forward-range}@ = // exposition only
8000+
concept @\placeholdernc{no-throw-forward-range}@ = // \expos
80018001
@\placeholder{no-throw-input-range}@<R> &&
80028002
@\placeholder{no-throw-forward-iterator}@<iterator_t<R>>;
80038003
\end{itemdecl}

0 commit comments

Comments
 (0)