[cfe-commits] r64489 - /cfe/trunk/docs/LanguageExtensions.html

Chris Lattner sabre at nondot.org
Fri Feb 13 13:51:45 PST 2009


Author: lattner
Date: Fri Feb 13 15:51:45 2009
New Revision: 64489

URL: http://llvm.org/viewvc/llvm-project?rev=64489&view=rev
Log:
wrap some crazy long lines.

Modified:
    cfe/trunk/docs/LanguageExtensions.html

Modified: cfe/trunk/docs/LanguageExtensions.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/LanguageExtensions.html?rev=64489&r1=64488&r2=64489&view=diff

==============================================================================
--- cfe/trunk/docs/LanguageExtensions.html (original)
+++ cfe/trunk/docs/LanguageExtensions.html Fri Feb 13 15:51:45 2009
@@ -58,7 +58,12 @@
 <h2 id="overloading-in-c">Function Overloading in C</h2>
 <!-- ======================================================================= -->
 
-<p>Clang provides support for C++ function overloading in C. Function overloading in C is introduced using the <tt>overloadable</tt> attribute. For example, one might provide several overloaded versions of a <tt>tgsin</tt> function that invokes the appropriate standard function computing the sine of a value with <tt>float</tt>, <tt>double</tt>, or <tt>long double</tt> precision:</p>
+<p>Clang provides support for C++ function overloading in C. Function
+overloading in C is introduced using the <tt>overloadable</tt> attribute. For
+example, one might provide several overloaded versions of a <tt>tgsin</tt>
+function that invokes the appropriate standard function computing the sine of a
+value with <tt>float</tt>, <tt>double</tt>, or <tt>long double</tt>
+precision:</p>
 
 <blockquote>
 <pre>
@@ -94,7 +99,8 @@
 function with a given name is given the <tt>overloadable</tt>
 attribute, then all function declarations and definitions with that
 name (and in that scope) must have the <tt>overloadable</tt>
-attribute. This rule even applies to redeclarations of functions whose original declaration had the <tt>overloadable</tt> attribute, e.g.,</p>
+attribute. This rule even applies to redeclarations of functions whose original
+declaration had the <tt>overloadable</tt> attribute, e.g.,</p>
 
 <blockquote>
 <pre>





More information about the cfe-commits mailing list