r200048 - Correct < and > to &lt; and &gt; . Thanks to Samuel Harrington for pointing this out!

Richard Smith richard-llvm at metafoo.co.uk
Fri Jan 24 14:55:47 PST 2014


Author: rsmith
Date: Fri Jan 24 16:55:47 2014
New Revision: 200048

URL: http://llvm.org/viewvc/llvm-project?rev=200048&view=rev
Log:
Correct < and > to < and >. Thanks to Samuel Harrington for pointing this out!

Modified:
    cfe/trunk/www/diagnostics.html

Modified: cfe/trunk/www/diagnostics.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/diagnostics.html?rev=200048&r1=200047&r2=200048&view=diff
==============================================================================
--- cfe/trunk/www/diagnostics.html (original)
+++ cfe/trunk/www/diagnostics.html Fri Jan 24 16:55:47 2014
@@ -316,7 +316,7 @@ forgetting a ; after a struct definition
   a<int> c;
   $ <span class="cmd">gcc-4.9 t.cc</span>
   t.cc:4:8: error: invalid declarator before 'c'
-   a<int> c;
+   a<int> c;
            ^
   $ <span class="cmd">clang t.cc</span>
   <span class="loc">t.cc:3:12:</span> <span class="err">error:</span> <span class="msg">expected ';' after struct</span>





More information about the cfe-commits mailing list