-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.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53095 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/www/cxx_status.html b/www/cxx_status.html
index 36c1ac6..123f4a0 100644
--- a/www/cxx_status.html
+++ b/www/cxx_status.html
@@ -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&lt;int&gt;(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/>

-      &nbsp;&nbsp;&nbsp;virtual int doFoo() = 0;<br/>

-          };</td>

-    <td>Nonexistent.</td>

-  </tr>

-  <tr>

-    <td>Templates</td>

-    <td>class C {<br/>

-      public:<br/>

-      &nbsp;&nbsp;&nbsp;template &lt;typename T&gt; T as();<br/>

-          };</td>

-    <td>Nonexistent.</td>

-  </tr>

 </table>

 </div>

 </body>