From 13234806d2351b7432f53c66c8328ba384c59cee Mon Sep 17 00:00:00 2001
From: Gabor Greif
Date: Wed, 2 Jul 2008 12:34:47 +0000
Subject: [PATCH] minor tweaks, escape < and >
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53016 91177308-0d34-0410-b5e6-96231b3b80d8
---
www/cxx_status.html | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/www/cxx_status.html b/www/cxx_status.html
index a10151caf2..6f33f353a5 100644
--- a/www/cxx_status.html
+++ b/www/cxx_status.html
@@ -35,7 +35,7 @@ This page tracks the status of C++ support in Clang.
C++ References |
int &x = ...; |
- Parser and Sema support in, partial Codegen support. |
+ Parser and Sema support in, partial Codegen support. |
C++ Default arguments |
@@ -47,7 +47,7 @@ This page tracks the status of C++ support in Clang.
namespace A {
int x;
} |
- Parser and Sema support in, no Codegen support. |
+ Parser and Sema support in, no Codegen support. |
C++ Class definitions |
@@ -57,7 +57,7 @@ This page tracks the status of C++ support in Clang.
private:
int x;
};
- Partial Parser and Sema support, no Codegen support. |
+ Partial Parser and Sema support, no Codegen support. |
Virtual functions |
@@ -65,15 +65,15 @@ This page tracks the status of C++ support in Clang.
public:
virtual int doFoo() = 0;
};
- Nonexistent |
+ Nonexistent. |
Templates |
class C {
public:
- template T as();
+ template <typename T> T as();
}; |
- Nonexistent |
+ Nonexistent. |
--
2.50.1