We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0818941 commit 577968dCopy full SHA for 577968d
source/templates.tex
@@ -3614,15 +3614,15 @@
3614
equivalent and would cause a program to be ill-formed:
3615
3616
\begin{codeblock}
3617
-// Guaranteed to be the same
+// guaranteed to be the same
3618
template <int I> void f(A<I>, A<I+10>);
3619
3620
3621
-// Guaranteed to be different
+// guaranteed to be different
3622
3623
template <int I> void f(A<I>, A<I+11>);
3624
3625
-// Ill-formed, no diagnostic required
+// ill-formed, no diagnostic required
3626
3627
template <int I> void f(A<I>, A<I+1+2+3+4>);
3628
\end{codeblock}
0 commit comments