diff options
| author | Howard Hinnant <hhinnant@apple.com> | 2013-03-14 18:37:48 +0000 |
|---|---|---|
| committer | Howard Hinnant <hhinnant@apple.com> | 2013-03-14 18:37:48 +0000 |
| commit | d70e6570fd53e13b122389c26de37168929a767c (patch) | |
| tree | c97de1e004e5a2bbf292a6db02437c2a654e3c01 /libcxx | |
| parent | 040d225588770f9cd209352ac7a9194648962776 (diff) | |
| download | bcm5719-llvm-d70e6570fd53e13b122389c26de37168929a767c.tar.gz bcm5719-llvm-d70e6570fd53e13b122389c26de37168929a767c.zip | |
Some forward-looking and optimistic documentation.
llvm-svn: 177093
Diffstat (limited to 'libcxx')
| -rw-r--r-- | libcxx/www/debug_mode.html | 156 | ||||
| -rw-r--r-- | libcxx/www/index.html | 1 |
2 files changed, 157 insertions, 0 deletions
diff --git a/libcxx/www/debug_mode.html b/libcxx/www/debug_mode.html new file mode 100644 index 00000000000..f38dbe7b65d --- /dev/null +++ b/libcxx/www/debug_mode.html @@ -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> diff --git a/libcxx/www/index.html b/libcxx/www/index.html index 857726f9a29..64df3cc8635 100644 --- a/libcxx/www/index.html +++ b/libcxx/www/index.html @@ -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> |

