From be5a105a4e70ef40a76eae496e6019115229cfc3 Mon Sep 17 00:00:00 2001
From: Argyrios Kyrtzidis
Date: Wed, 2 Jul 2008 14:16:29 +0000
Subject: [PATCH] Drop 'C++' from the features; suggestion by Holger Schurig.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53020 91177308-0d34-0410-b5e6-96231b3b80d8
---
www/cxx_status.html | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/www/cxx_status.html b/www/cxx_status.html
index 596dae8486..2a270c346c 100644
--- a/www/cxx_status.html
+++ b/www/cxx_status.html
@@ -28,29 +28,29 @@ This page tracks the status of C++ support in Clang.
Status |
- C++ Keywords |
+ Keywords |
reinterpret_cast |
Full support. |
- C++ References |
+ References |
int &x = ...; |
Parser and Sema support in, partial Codegen support. |
- C++ Default arguments |
+ Default arguments |
void f(int x=0); |
Full support. |
- C++ Namespaces |
+ Namespaces |
namespace A {
int x;
} |
Parser and Sema support in, no Codegen support. |
- C++ Class definitions |
+ Class definitions |
class C {
public:
int getX() { return x; }
|