[cfe-commits] [libcxx] r131264 - /libcxx/trunk/www/type_traits_design.html

Howard Hinnant hhinnant at apple.com
Thu May 12 19:01:01 CDT 2011


Author: hhinnant
Date: Thu May 12 19:01:01 2011
New Revision: 131264

URL: http://llvm.org/viewvc/llvm-project?rev=131264&view=rev
Log:
Updated to reflect updated use of existing clang support

Modified:
    libcxx/trunk/www/type_traits_design.html

Modified: libcxx/trunk/www/type_traits_design.html
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/www/type_traits_design.html?rev=131264&r1=131263&r2=131264&view=diff
==============================================================================
--- libcxx/trunk/www/type_traits_design.html (original)
+++ libcxx/trunk/www/type_traits_design.html Thu May 12 19:01:01 2011
@@ -110,7 +110,7 @@
 
 <tr>
 <td><tt>is_constructible&lt;T, Args...&gt;</tt></td>
-<td bgcolor="#FF5965">Needs CWG 1170 or <tt>__is_constructible(T, Args...)</tt></td>
+<td></td>
 </tr>
 
 <tr>
@@ -130,7 +130,7 @@
 
 <tr>
 <td><tt>is_assignable&lt;T, U&gt;</tt></td>
-<td bgcolor="#FF5965">Needs CWG 1170 or <code>__is_assignable(T, U)</code></td>
+<td></td>
 </tr>
 
 <tr>
@@ -145,17 +145,17 @@
 
 <tr>
 <td><tt>is_destructible&lt;T&gt;</tt></td>
-<td bgcolor="#FF5965">Needs CWG 1170 or <tt>__is_destructible(T)</tt></td>
+<td bgcolor="#FF5965">Needs CWG 1170</td>
 </tr>
 
 <tr>
 <td><tt>is_trivially_constructible&lt;T, Args...&gt;</tt></td>
-<td bgcolor="#FF5965"><tt>__is_trivially_constructible(T, Args...)</tt></td>
+<td bgcolor="#FF5965"><tt>__is_trivial_constructor(T, U)</tt></td>
 </tr>
 
 <tr>
 <td><tt>is_trivially_default_constructible&lt;T&gt;</tt></td>
-<td><tt>__has_trivial_constructor(T)</tt></td>
+<td bgcolor="#80FF80"><tt>__has_trivial_constructor(T)</tt></td>
 </tr>
 
 <tr>
@@ -190,7 +190,7 @@
 
 <tr>
 <td><tt>is_nothrow_constructible&lt;T, Args...&gt;</tt></td>
-<td bgcolor="#FF5965"><tt>__is_nothrow_constructible(T, Args...)</tt></td>
+<td></td>
 </tr>
 
 <tr>
@@ -210,7 +210,7 @@
 
 <tr>
 <td><tt>is_nothrow_assignable&lt;T, U&gt;</tt></td>
-<td bgcolor="#FF5965"><tt>__is_nothrow_assignable(T, U)</tt></td>
+<td></td>
 </tr>
 
 <tr>
@@ -225,12 +225,12 @@
 
 <tr>
 <td><tt>is_nothrow_destructible&lt;T&gt;</tt></td>
-<td bgcolor="#FF5965"><tt>__is_nothrow_destructible(T)</tt></td>
+<td bgcolor="#FF5965">Needs CWG 1170</td>
 </tr>
 
 <tr>
 <td><tt>is_trivial&lt;T&gt;</tt></td>
-<td bgcolor="#FF5965"><tt>__is_trivial(T)</tt></td>
+<td bgcolor="#80FF80"><tt>__is_trivial(T)</tt></td>
 </tr>
 
 <tr>
@@ -240,7 +240,7 @@
 
 <tr>
 <td><tt>is_standard_layout&lt;T&gt;</tt></td>
-<td bgcolor="#FF5965"><tt>__is_standard_layout(T)</tt></td>
+<td bgcolor="#80FF80"><tt>__is_standard_layout(T)</tt></td>
 </tr>
 
 <tr>




More information about the cfe-commits mailing list