From a6f646ab8c8ab6bae68e41b2e46a344c669fe687 Mon Sep 17 00:00:00 2001 From: Casey Carter Date: Thu, 19 Dec 2019 08:37:17 -0800 Subject: [PATCH] [ranges] Do not indent codeblocks Fixes #3568. --- source/ranges.tex | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/source/ranges.tex b/source/ranges.tex index 6c60ff74a1..3f465fe8df 100644 --- a/source/ranges.tex +++ b/source/ranges.tex @@ -348,10 +348,10 @@ valid expression and its type \tcode{I} models \libconcept{input_or_output_iterator} with overload resolution performed in a context that includes the declarations: - \begin{codeblock} +\begin{codeblock} template void begin(T&&) = delete; template void begin(initializer_list&&) = delete; - \end{codeblock} +\end{codeblock} and does not include a declaration of \tcode{ranges::begin}. \item @@ -389,22 +389,22 @@ Otherwise, \tcode{\placeholdernc{decay-copy}(t.end())} if it is a valid expression and its type \tcode{S} models - \begin{codeblock} +\begin{codeblock} sentinel_for - \end{codeblock} +\end{codeblock} \item Otherwise, \tcode{\placeholdernc{decay-copy}(end(t))} if it is a valid expression and its type \tcode{S} models - \begin{codeblock} +\begin{codeblock} sentinel_for - \end{codeblock} +\end{codeblock} with overload resolution performed in a context that includes the declarations: - \begin{codeblock} +\begin{codeblock} template void end(T&&) = delete; template void end(initializer_list&&) = delete; - \end{codeblock} +\end{codeblock} and does not include a declaration of \tcode{ranges::end}. \item @@ -482,9 +482,9 @@ expression and its type \tcode{I} models \libconcept{input_or_output_iterator} with overload resolution performed in a context that includes the declaration: - \begin{codeblock} +\begin{codeblock} template void rbegin(T&&) = delete; - \end{codeblock} +\end{codeblock} and does not include a declaration of \tcode{ranges::rbegin}. \item @@ -523,21 +523,21 @@ \item \tcode{\placeholdernc{decay-copy}(t.rend())} if it is a valid expression and its type \tcode{S} models - \begin{codeblock} +\begin{codeblock} sentinel_for - \end{codeblock} +\end{codeblock} \item Otherwise, \tcode{\placeholdernc{decay-copy}(rend(t))} if it is a valid expression and its type \tcode{S} models - \begin{codeblock} +\begin{codeblock} sentinel_for - \end{codeblock} +\end{codeblock} with overload resolution performed in a context that includes the declaration: - \begin{codeblock} +\begin{codeblock} template void rend(T&&) = delete; - \end{codeblock} +\end{codeblock} and does not include a declaration of \tcode{ranges::rend}. \item @@ -627,9 +627,9 @@ is integer-like with overload resolution performed in a context that includes the declaration: - \begin{codeblock} +\begin{codeblock} template void size(T&&) = delete; - \end{codeblock} +\end{codeblock} and does not include a declaration of \tcode{ranges::size}. \end{itemize}