[libcxx] r177093 - Some forward-looking and optimistic documentation.

Howard Hinnant hhinnant at apple.com
Thu Mar 14 11:37:48 PDT 2013


Author: hhinnant
Date: Thu Mar 14 13:37:48 2013
New Revision: 177093

URL: http://llvm.org/viewvc/llvm-project?rev=177093&view=rev
Log:
Some forward-looking and optimistic documentation.

Added:
    libcxx/trunk/www/debug_mode.html
Modified:
    libcxx/trunk/www/index.html

Added: libcxx/trunk/www/debug_mode.html
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/www/debug_mode.html?rev=177093&view=auto
==============================================================================
--- libcxx/trunk/www/debug_mode.html (added)
+++ libcxx/trunk/www/debug_mode.html Thu Mar 14 13:37:48 2013
@@ -0,0 +1,156 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+        "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+	<title>libc++ debug mode status</title>
+</head>
+<body>
+
+<p>
+Work is beginning on a libc++ debug mode.  The purpose of this table is to
+record which parts of libc++ have debug mode support.
+</p>
+
+<table border=1>
+<tr>
+<th>Section</th>
+<th>Completed ?</th>
+</tr>
+
+<tr>
+<td>
+<p>
+<code>vector<T>, T != bool</code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><list></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><unordered_set></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><unordered_map></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><set></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><map></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><string></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code>vector<bool></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><deque></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><forward_list></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><array></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><stack></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><queue></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+<tr>
+<td>
+<p>
+<code><algorithm></code>
+</p>
+</td>
+<td><!-- ✓ --></td>
+</tr>
+
+
+</table>
+
+<p>
+At present the table is known to not be a complete list.  It is currently ordered
+in approximate priority order.
+</p>
+
+
+</body>
+</html>

Modified: libcxx/trunk/www/index.html
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/www/index.html?rev=177093&r1=177092&r2=177093&view=diff
==============================================================================
--- libcxx/trunk/www/index.html (original)
+++ libcxx/trunk/www/index.html Thu Mar 14 13:37:48 2013
@@ -342,6 +342,7 @@ End of search list.
 <li><a href="atomic_design.html"><tt><atomic></tt></a></li>
 <li><a href="type_traits_design.html"><tt><type_traits></tt></a></li>
 <li><a href="http://marshall.calepin.co/llvmclang-and-standard-libraries-on-mac-os-x.html">Excellent notes by Marshall Clow</a></li>
+<li><a href="debug_mode.html">Status of debug mode</a></li>
 </ul>
 
 </div>





More information about the cfe-commits mailing list