From: Chris Lattner Date: Fri, 13 Feb 2009 21:51:45 +0000 (+0000) Subject: wrap some crazy long lines. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f161d4155f51328da08d4a28233d5ca9ce5b998a;p=clang wrap some crazy long lines. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64489 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html index 1a8ff953ad..dfffd2f5d6 100644 --- a/docs/LanguageExtensions.html +++ b/docs/LanguageExtensions.html @@ -58,7 +58,12 @@ href="#__builtin_shufflevector">__builtin_shufflevector.

Function Overloading in C

-

Clang provides support for C++ function overloading in C. Function overloading in C is introduced using the overloadable attribute. For example, one might provide several overloaded versions of a tgsin function that invokes the appropriate standard function computing the sine of a value with float, double, or long double precision:

+

Clang provides support for C++ function overloading in C. Function +overloading in C is introduced using the overloadable attribute. For +example, one might provide several overloaded versions of a tgsin +function that invokes the appropriate standard function computing the sine of a +value with float, double, or long double +precision:

@@ -94,7 +99,8 @@ function declarations and definitions. Most importantly, if any
 function with a given name is given the overloadable
 attribute, then all function declarations and definitions with that
 name (and in that scope) must have the overloadable
-attribute. This rule even applies to redeclarations of functions whose original declaration had the overloadable attribute, e.g.,

+attribute. This rule even applies to redeclarations of functions whose original +declaration had the overloadable attribute, e.g.,