From 4011af5163341b2ef18d99550f27f0463262c610 Mon Sep 17 00:00:00 2001 From: Jan Schultke Date: Fri, 19 Apr 2024 11:19:02 +0200 Subject: [PATCH] LWG3031 Fix missing code-formatting of const --- source/algorithms.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/algorithms.tex b/source/algorithms.tex index ec47564de5..99448714b8 100644 --- a/source/algorithms.tex +++ b/source/algorithms.tex @@ -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)}. @@ -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