[cfe-commits] r53095 - /cfe/trunk/www/cxx_status.html

Argiris Kirtzidis akyrtzi at gmail.com
Thu Jul 3 01:32:59 PDT 2008


Author: akirtzidis
Date: Thu Jul  3 03:32:59 2008
New Revision: 53095

URL: http://llvm.org/viewvc/llvm-project?rev=53095&view=rev
Log:
-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.

Modified:
    cfe/trunk/www/cxx_status.html

Modified: cfe/trunk/www/cxx_status.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/cxx_status.html?rev=53095&r1=53094&r2=53095&view=diff

==============================================================================
--- cfe/trunk/www/cxx_status.html (original)
+++ cfe/trunk/www/cxx_status.html Thu Jul  3 03:32:59 2008
@@ -37,14 +37,14 @@
     <td width="345"><h3>Status</h3></td>
   </tr>
   <tr>
-    <td>Keywords </td>
-    <td>reinterpret_cast</td>
+    <td>Bool type </td>
+    <td>bool x; </td>
     <td>Full support.</td>
   </tr>
   <tr>
     <td>Named Casts </td>
     <td>static_cast<int>(x)</td>
-    <td>Parser and Sema support, no codegen.</td>
+    <td>Partial Parser and Sema support, no codegen.</td>
   </tr>
   <tr>
     <td>References</td>
@@ -73,22 +73,6 @@
 	  };</td>
     <td>Partial Parser and Sema support, no Codegen support.</td>
   </tr>
-  <tr>
-    <td>Virtual functions</td>
-    <td>class C {<br/>
-      public:<br/>
-         virtual int doFoo() = 0;<br/>
-          };</td>
-    <td>Nonexistent.</td>
-  </tr>
-  <tr>
-    <td>Templates</td>
-    <td>class C {<br/>
-      public:<br/>
-         template <typename T> T as();<br/>
-          };</td>
-    <td>Nonexistent.</td>
-  </tr>
 </table>
 </div>
 </body>





More information about the cfe-commits mailing list