close run-away tag

llvm-svn: 33828
This commit is contained in:
Chris Lattner 2007-02-03 07:59:51 +00:00
parent ac76029f91
commit cb292fc808
1 changed files with 1 additions and 1 deletions

View File

@ -904,7 +904,7 @@ with a standard binary search.</p>
<div class="doc_text">
<p>If you have a set-like datastructure that is usually small and whose elements
are reasonably small, a <tt>SmallSet&lt;Type, N&gt; is a good choice. This set
are reasonably small, a <tt>SmallSet&lt;Type, N&gt;</tt> is a good choice. This set
has space for N elements in place (thus, if the set is dynamically smaller than
N, no malloc traffic is required) and access them with a simple linear search.
When the set grows beyond 'N', it allocates a more expensive representation that