diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-06-30 22:43:03 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-06-30 22:43:03 +0000 |
commit | 5396853d817ee9dba629208635a9e4d8e83256e6 (patch) | |
tree | d1a8f6daf5cdc32e9bd69053f4c5d754dc470357 /clang/www | |
parent | 426c572d784e1b5764f3170334ce6234950ec97a (diff) | |
download | bcm5719-llvm-5396853d817ee9dba629208635a9e4d8e83256e6.tar.gz bcm5719-llvm-5396853d817ee9dba629208635a9e4d8e83256e6.zip |
Wording tweak from Dan.
llvm-svn: 107344
Diffstat (limited to 'clang/www')
-rw-r--r-- | clang/www/compatibility.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/www/compatibility.html b/clang/www/compatibility.html index 8a2f05b3b3b..11f9f659a2d 100644 --- a/clang/www/compatibility.html +++ b/clang/www/compatibility.html @@ -95,14 +95,14 @@ Undefined symbols: <p>There are several ways to fix this problem:</p> <ul> - <li>Provide an external (non-inline) definition of <code>add</code> - somewhere in your program.</li> - <li>Change <code>add</code> to a <code>static inline</code> function. Static inline functions are always resolved within the translation unit, so you won't have to add an external, non-inline definition of the function elsewhere in your program.</li> + <li>Provide an external (non-inline) definition of <code>add</code> + somewhere in your program.</li> + <li>Compile with the GNU89 dialect by adding <code>-std=gnu89</code> to the set of Clang options. This option is only recommended if the program source cannot be changed or if the |