зеркало из https://github.com/microsoft/clang-1.git
Add a C++ status report page.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53013 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
7a85d1cb5d
Коммит
84b7a80530
|
@ -0,0 +1,65 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
||||
"http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
|
||||
<title>Clang - Features and Goals</title>
|
||||
<link type="text/css" rel="stylesheet" href="menu.css" />
|
||||
<link type="text/css" rel="stylesheet" href="content.css" />
|
||||
<style type="text/css">
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!--#include virtual="menu.html.incl"-->
|
||||
|
||||
<div id="content">
|
||||
|
||||
<!--*************************************************************************-->
|
||||
<h1>C++ Support in Clang</h1>
|
||||
<!--*************************************************************************-->
|
||||
|
||||
<p>
|
||||
This page tracks the status of C++ support in Clang.</p>
|
||||
<table width="689" border="1">
|
||||
<tr>
|
||||
<td width="150"><h3>Feature</h3></td>
|
||||
<td width="172"><h3>Example</h3></td>
|
||||
<td width="345"><h3>Status</h3></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>C++ Keywords </td>
|
||||
<td>reinterpret_cast</td>
|
||||
<td>Full support.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>C++ References</td>
|
||||
<td>int &x = ...;</td>
|
||||
<td>Parser and Sema support in, partial Codegen support. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>C++ Default arguments </td>
|
||||
<td>void f(int x=0); </td>
|
||||
<td>Full support. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>C++ Namespaces</td>
|
||||
<td>namespace A {<br/>
|
||||
int x;<br/>
|
||||
}</td>
|
||||
<td>Parser and Sema support in, no Codegen support. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>C++ Class definitions</td>
|
||||
<td>class C {<br/>
|
||||
public:<br/>
|
||||
int getX() { return x; }<br/>
|
||||
private:<br/>
|
||||
int x;<br/>
|
||||
};</td>
|
||||
<td>Partial Parser and Sema support, no Codegen support. </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Загрузка…
Ссылка в новой задаче