From 4ddfac128aaec0d258ba078ea8bb24de445d4a7f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 3 Feb 2007 07:59:51 +0000 Subject: [PATCH] close run-away tag git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33828 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/ProgrammersManual.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 633b167b4c3..46077b82d42 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -904,7 +904,7 @@ with a standard binary search.

If you have a set-like datastructure that is usually small and whose elements -are reasonably small, a SmallSet<Type, N> is a good choice. This set +are reasonably small, a SmallSet<Type, N> 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