Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cplusplus/draft
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1e2a46096b97b61a8b110d4bb27b41f5fea25e2c
Choose a base ref
..
head repository: cplusplus/draft
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fb22bbd60aba1f3aaf9288ab08a7feeb8e4c0101
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 source/expressions.tex
4 changes: 2 additions & 2 deletions source/expressions.tex
Original file line number Diff line number Diff line change
@@ -2648,11 +2648,11 @@
the \grammarterm{template-argument-list}
comprising the concept's subsequent arguments.
\begin{note}
Thus, constraints of the form
Thus, requirements of the form
\tcode{\{ E \} -> Concept;} or of the form
\tcode{\{ E \} -> Concept<>;} are equivalent to
\tcode{E; requires Concept<decltype((E))>;}
while a constraint of the form
while a requirements of the form
\tcode{\{ E \} -> Concept<A$_1$, A$_2$, $\cdots$, A$_n$>;} is equivalent to
\tcode{E; requires Concept<decltype((E)), A$_1$, A$_2$, $\cdots$, A$_n$>;}.
\end{note}