aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2008-07-02 12:34:47 +0000
committerGabor Greif <ggreif@gmail.com>2008-07-02 12:34:47 +0000
commit13234806d2351b7432f53c66c8328ba384c59cee (patch)
tree0e2184a614da548ad5ebb991d3d37d053c4c3b9d
parent7727cb2c12fd0f61b15611e48835e7a077d9d95a (diff)
minor tweaks, escape < and >
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53016 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--www/cxx_status.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/www/cxx_status.html b/www/cxx_status.html
index a10151caf2..6f33f353a5 100644
--- a/www/cxx_status.html
+++ b/www/cxx_status.html
@@ -35,7 +35,7 @@ This page tracks the status of C++ support in Clang.</p>
<tr>
<td>C++ References</td>
<td>int &amp;x = ...;</td>
- <td>Parser and Sema support in, partial Codegen support. </td>
+ <td>Parser and Sema support in, partial Codegen support.</td>
</tr>
<tr>
<td>C++ Default arguments </td>
@@ -47,7 +47,7 @@ This page tracks the status of C++ support in Clang.</p>
<td>namespace A {<br/>
&nbsp;&nbsp;&nbsp;int x;<br/>
}</td>
- <td>Parser and Sema support in, no Codegen support. </td>
+ <td>Parser and Sema support in, no Codegen support.</td>
</tr>
<tr>
<td>C++ Class definitions</td>
@@ -57,7 +57,7 @@ This page tracks the status of C++ support in Clang.</p>
private:<br/>
&nbsp;&nbsp;&nbsp;int x;<br/>
};</td>
- <td>Partial Parser and Sema support, no Codegen support. </td>
+ <td>Partial Parser and Sema support, no Codegen support.</td>
</tr>
<tr>
<td>Virtual functions</td>
@@ -65,15 +65,15 @@ This page tracks the status of C++ support in Clang.</p>
public:<br/>
&nbsp;&nbsp;&nbsp;virtual int doFoo() = 0;<br/>
};</td>
- <td>Nonexistent</td>
+ <td>Nonexistent.</td>
</tr>
<tr>
<td>Templates</td>
<td>class C {<br/>
public:<br/>
- &nbsp;&nbsp;&nbsp;template <typename T> T as();<br/>
+ &nbsp;&nbsp;&nbsp;template &lt;typename T&gt; T as();<br/>
};</td>
- <td>Nonexistent</td>
+ <td>Nonexistent.</td>
</tr>
</table>
</div>