Skip to content

Commit

Permalink
LWG3031 Fix missing code-formatting of const
Browse files Browse the repository at this point in the history
  • Loading branch information
Eisenwave authored Apr 19, 2024
1 parent 0211a3d commit 4011af5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/algorithms.tex
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
\exposconcept{boolean-testable}\iref{concept.booleantestable}.
The function object \tcode{pred} shall not apply any non-constant function
through its argument.
Given a glvalue \tcode{u} of type (possibly const) \tcode{T}
Given a glvalue \tcode{u} of type (possibly \tcode{const}) \tcode{T}
that designates the same object as \tcode{*first},
\tcode{pred(u)} shall be a valid expression
that is equal to \tcode{pred(*first)}.
Expand All @@ -186,9 +186,9 @@
\exposconcept{boolean-testable}.
\tcode{binary_pred} shall not apply any non-constant function
through any of its arguments.
Given a glvalue \tcode{u} of type (possibly const) \tcode{T1}
Given a glvalue \tcode{u} of type (possibly \tcode{const}) \tcode{T1}
that designates the same object as \tcode{*first1}, and
a glvalue \tcode{v} of type (possibly const) \tcode{T2}
a glvalue \tcode{v} of type (possibly \tcode{const}) \tcode{T2}
that designates the same object as \tcode{*first2},
\tcode{binary_pred(u, *first2)},
\tcode{binary_pred(*first1, v)}, and
Expand Down

0 comments on commit 4011af5

Please sign in to comment.