diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-03 22:04:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-03 22:04:27 +0000 |
commit | 265345fc653a2a75905a7060f12bb87f19867ef9 (patch) | |
tree | 9f027ba9b9385477c049adf1905c810138e18965 /llvm/docs/ProgrammersManual.html | |
parent | 31882b8831b3f82b9a7cce5eaa31eb29f45820cf (diff) | |
download | bcm5719-llvm-265345fc653a2a75905a7060f12bb87f19867ef9.tar.gz bcm5719-llvm-265345fc653a2a75905a7060f12bb87f19867ef9.zip |
null -> pointer, nul -> character :)
llvm-svn: 33841
Diffstat (limited to 'llvm/docs/ProgrammersManual.html')
-rw-r--r-- | llvm/docs/ProgrammersManual.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/ProgrammersManual.html b/llvm/docs/ProgrammersManual.html index 4f91254e402..8e61b179f0e 100644 --- a/llvm/docs/ProgrammersManual.html +++ b/llvm/docs/ProgrammersManual.html @@ -1126,7 +1126,7 @@ Strings are commonly used as keys in maps, and they are difficult to support efficiently: they are variable length, inefficient to hash and compare when long, expensive to copy, etc. CStringMap is a specialized container designed to cope with these issues. It supports mapping an arbitrary range of bytes that -does not have an embedded null character in it ("C strings") to an arbitrary +does not have an embedded nul character in it ("C strings") to an arbitrary other object.</p> <p>The CStringMap implementation uses a quadratically-probed hash table, where |