diff --git a/source/compatibility.tex b/source/compatibility.tex index edbd9196d1..1ec4a31426 100644 --- a/source/compatibility.tex +++ b/source/compatibility.tex @@ -3076,8 +3076,8 @@ \begin{codeblock} int arr1[5]; int arr2[5]; -int same = arr1 == arr2; // valid C, ill-formed C++ -int idem = arr1 == +arr2; // valid in both C and C++ +int same = arr1 == arr2; // valid C, ill-formed \Cpp{} +int idem = arr1 == +arr2; // valid \Cpp{}, constraint violation in C \end{codeblock} \end{example} \howwide