From: Argyrios Kyrtzidis Date: Thu, 3 Jul 2008 08:32:59 +0000 (+0000) Subject: -Added bool feature. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6768980f103569a39a150f1dfdf27068f34fe6db;p=clang -Added bool feature. -Set "Named Casts" feature to partial parser/sema support because reinterpret_cast is not properly implemented. -Removed "Virtual functions" feature because it is already covered by "Class definitions". -Removed "Templates" because we should either list *all* missing/supported features or just list the features with some support. Mentioning just a few missing features without listing all of them makes little sense. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53095 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/www/cxx_status.html b/www/cxx_status.html index 36c1ac6585..123f4a0a50 100644 --- a/www/cxx_status.html +++ b/www/cxx_status.html @@ -37,14 +37,14 @@ actually produce LLVM code for the feature with the -emit-llvm option.

Status

- Keywords - reinterpret_cast + Bool type + bool x; Full support. Named Casts static_cast<int>(x) - Parser and Sema support, no codegen. + Partial Parser and Sema support, no codegen. References @@ -73,22 +73,6 @@ actually produce LLVM code for the feature with the -emit-llvm option. }; Partial Parser and Sema support, no Codegen support. - - Virtual functions - class C {
- public:
-    virtual int doFoo() = 0;
- }; - Nonexistent. - - - Templates - class C {
- public:
-    template <typename T> T as();
- }; - Nonexistent. -