git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107344 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Douglas Gregor 2010-06-30 22:43:03 +00:00
Родитель 6f1adba9c7
Коммит ff6f66e33f
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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