aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2008-07-02 12:31:13 +0000
committerGabor Greif <ggreif@gmail.com>2008-07-02 12:31:13 +0000
commit7727cb2c12fd0f61b15611e48835e7a077d9d95a (patch)
tree16a1ce8e81a9106d240481283d1bd6d5388789eb
parent37d5027bf98abd05c51089f4e11499622168908b (diff)
add two popular c++ features
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53015 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--www/cxx_status.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/www/cxx_status.html b/www/cxx_status.html
index d290d94667..a10151caf2 100644
--- a/www/cxx_status.html
+++ b/www/cxx_status.html
@@ -59,6 +59,22 @@ This page tracks the status of C++ support in Clang.</p>
};</td>
<td>Partial Parser and Sema support, no Codegen support. </td>
</tr>
+ <tr>
+ <td>Virtual functions</td>
+ <td>class C {<br/>
+ public:<br/>
+ &nbsp;&nbsp;&nbsp;virtual int doFoo() = 0;<br/>
+ };</td>
+ <td>Nonexistent</td>
+ </tr>
+ <tr>
+ <td>Templates</td>
+ <td>class C {<br/>
+ public:<br/>
+ &nbsp;&nbsp;&nbsp;template <typename T> T as();<br/>
+ };</td>
+ <td>Nonexistent</td>
+ </tr>
</table>
</div>
</body>