From dedda503cbf207c868b0348533d9f4866f5147de 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 > llvm-svn: 53016 --- clang/www/cxx_status.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/clang/www/cxx_status.html b/clang/www/cxx_status.html index a10151caf2d1..6f33f353a586 100644 --- a/clang/www/cxx_status.html +++ b/clang/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.