diff options
| -rw-r--r-- | clang/www/cxx_status.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/clang/www/cxx_status.html b/clang/www/cxx_status.html index d290d946670..a10151caf2d 100644 --- a/clang/www/cxx_status.html +++ b/clang/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/>
+ virtual int doFoo() = 0;<br/>
+ };</td>
+ <td>Nonexistent</td>
+ </tr>
+ <tr>
+ <td>Templates</td>
+ <td>class C {<br/>
+ public:<br/>
+ template <typename T> T as();<br/>
+ };</td>
+ <td>Nonexistent</td>
+ </tr>
</table>
</div>
</body>
|

