summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-06-30 22:43:03 +0000
committerDouglas Gregor <dgregor@apple.com>2010-06-30 22:43:03 +0000
commitff6f66e33f234d4bba16c9149476d691e2c96ca9 (patch)
treeb5fddebb6f0b13249691f44cc47429d780a0d801 /www
parent6f1adba9c79b00f406ec92aee4ed5b0094c5b159 (diff)
downloadclang-ff6f66e33f234d4bba16c9149476d691e2c96ca9.tar.gz
Wording tweak from Dan.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107344 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www')
-rw-r--r--www/compatibility.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/compatibility.html b/www/compatibility.html
index 8a2f05b3b3..11f9f659a2 100644
--- a/www/compatibility.html
+++ b/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