[llvm-commits] [llvm] r135799 - /llvm/trunk/docs/ProgrammersManual.html
Chris Lattner
sabre at nondot.org
Fri Jul 22 13:46:49 PDT 2011
Author: lattner
Date: Fri Jul 22 15:46:49 2011
New Revision: 135799
URL: http://llvm.org/viewvc/llvm-project?rev=135799&view=rev
Log:
move the section for string-like containers to follow the section for sequential containers.
Modified:
llvm/trunk/docs/ProgrammersManual.html
Modified: llvm/trunk/docs/ProgrammersManual.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.html?rev=135799&r1=135798&r2=135799&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.html (original)
+++ llvm/trunk/docs/ProgrammersManual.html Fri Jul 22 15:46:49 2011
@@ -68,6 +68,10 @@
<li><a href="#dss_packedvector">llvm/ADT/PackedVector.h</a></li>
<li><a href="#dss_other">Other Sequential Container Options</a></li>
</ul></li>
+ <li><a href="#ds_string">String-like containers</a>
+ <!--<ul>
+ todo
+ </ul>--></li>
<li><a href="#ds_set">Set-Like Containers (std::set, SmallSet, SetVector, etc)</a>
<ul>
<li><a href="#dss_sortedvectorset">A sorted 'vector'</a></li>
@@ -92,10 +96,6 @@
<li><a href="#dss_inteqclasses">"llvm/ADT/IntEqClasses.h"</a></li>
<li><a href="#dss_othermap">Other Map-Like Container Options</a></li>
</ul></li>
- <li><a href="#ds_string">String-like containers</a>
- <!--<ul>
- todo
- </ul>--></li>
<li><a href="#ds_bit">BitVector-like containers</a>
<ul>
<li><a href="#dss_bitvector">A dense bitvector</a></li>
@@ -1214,6 +1214,21 @@
<!-- ======================================================================= -->
<h3>
+ <a name="ds_string">String-like containers</a>
+</h3>
+
+<div>
+
+<p>
+TODO: const char* vs stringref vs smallstring vs std::string. Describe twine,
+xref to #string_apis.
+</p>
+
+</div>
+
+
+<!-- ======================================================================= -->
+<h3>
<a name="ds_set">Set-Like Containers (std::set, SmallSet, SetVector, etc)</a>
</h3>
@@ -1655,20 +1670,6 @@
<!-- ======================================================================= -->
<h3>
- <a name="ds_string">String-like containers</a>
-</h3>
-
-<div>
-
-<p>
-TODO: const char* vs stringref vs smallstring vs std::string. Describe twine,
-xref to #string_apis.
-</p>
-
-</div>
-
-<!-- ======================================================================= -->
-<h3>
<a name="ds_bit">Bit storage containers (BitVector, SparseBitVector)</a>
</h3>
More information about the llvm-commits
mailing list