From: Gabor Greif
Date: Wed, 2 Jul 2008 12:31:13 +0000 (+0000)
Subject: add two popular c++ features
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7727cb2c12fd0f61b15611e48835e7a077d9d95a;p=clang
add two popular c++ features
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53015 91177308-0d34-0410-b5e6-96231b3b80d8
---
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.
};
Partial Parser and Sema support, no Codegen support. |
+
+ Virtual functions |
+ class C {
+ public:
+ virtual int doFoo() = 0;
+ }; |
+ Nonexistent |
+
+
+ Templates |
+ class C {
+ public:
+ template T as();
+ }; |
+ Nonexistent |
+